https://github.com/thomastjdev/nim_gdork_sqli
Nim-lang Google dork SQLi checker. Gather URLs and check if they are prone to SQL injection.
https://github.com/thomastjdev/nim_gdork_sqli
Last synced: 12 months ago
JSON representation
Nim-lang Google dork SQLi checker. Gather URLs and check if they are prone to SQL injection.
- Host: GitHub
- URL: https://github.com/thomastjdev/nim_gdork_sqli
- Owner: ThomasTJdev
- Created: 2017-01-21T20:58:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-21T21:04:56.000Z (over 9 years ago)
- Last Synced: 2025-03-21T20:16:18.522Z (about 1 year ago)
- Language: Nimrod
- Homepage:
- Size: 338 KB
- Stars: 0
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Nim-lang google dorks SQL injections checker
This is a POC for using nim for IT security.
## Function
1) This code will do a bing search checking for `php?id=` in the URL
2) It will then catch 5 pages with 50 results on each and save the URLs in the `sqlurls.txt`
3) Each URL will be checked for SQL error messages in `sql.txt`
4) If an error is found, the URL will be save in `sqliprone.txt`
## Requirements
* nim
* `nimble q`
## Run
### Code
To run the code, you'll need to include the ssl flag (`-d:ssl`).
Run it with: `nim c -d:ssl -r gdork_sqli.nim`
### Executable
Run it with: `./gdork_sqli`