Skip to content

Commit

Permalink
naming update
Browse files Browse the repository at this point in the history
Co-Authored-By: Alaa Abdulridha <[email protected]>
Co-Authored-By: Ryan Emmons <[email protected]>
Co-Authored-By: Guinslym <[email protected]>
Co-Authored-By: Miroslav Stampar <[email protected]>
Co-Authored-By: Bernardo Damele A. G. <[email protected]>
Co-Authored-By: Najmi Tanjung <[email protected]>
Co-Authored-By: D O P P L E R S H I F T <[email protected]>
  • Loading branch information
8 people committed Jul 8, 2024
1 parent 4878c34 commit 3f9b6c0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ pip install -r requirements.txt
```shell
python injectionmap_v2.py -u "http://example.com/vulnerable.php?id=1"
```

To get a list of **basic options** and switches use:

```shell
python sqlmap.py -h
```

To get a list of **all options** and switches use:

```shell
python sqlmap.py -hh
```

You can find a sample run [here](https://asciinema.org/a/46601).

**Another** injections attack modules:

> - Blind SQL Injection
Expand Down Expand Up @@ -72,5 +87,5 @@ Code contributors of Injectionmap_v2:
- GangstaCrew
- The Designer

## For more information
visit our GitHub page or contact us at [email protected]
## For more informations
visit our GitHub page, our org, or contact us at [email protected]
8 changes: 4 additions & 4 deletions plugins/generic/fingerprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from lib.core.common import readInput
from lib.core.data import logger
from lib.core.enums import OS
from lib.core.exception import SqlmapUndefinedMethod
from lib.core.exception import Injectionmap_v2Method

class Fingerprint(object):
"""
Expand All @@ -22,17 +22,17 @@ def __init__(self, dbms):
def getFingerprint(self):
errMsg = "'getFingerprint' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
raise Injectionmap_v2Method(errMsg)

def checkDbms(self):
errMsg = "'checkDbms' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
raise Injectionmap_v2Method(errMsg)

def checkDbmsOs(self, detailed=False):
errMsg = "'checkDbmsOs' method must be defined "
errMsg += "into the specific DBMS plugin"
raise SqlmapUndefinedMethod(errMsg)
raise Injectionmap_v2Method(errMsg)

def forceDbmsEnum(self):
pass
Expand Down

0 comments on commit 3f9b6c0

Please sign in to comment.