Skip to content

A multiprocessing blind SQL injection script to handle cases where sqlmap fails.

Notifications You must be signed in to change notification settings

mukarramkhalid/needle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 

Repository files navigation

Needle

A multiprocessing blind SQL injection script to handle cases where sqlmap fails.

It's still a work in progress.

The infer method expects you to specify what's True and False. You need to set that accordingly.

A few examples are given below.

Example 1

def infer(self, response):
    '''
    If response length is less than 50, it's False
    Otherwise, it's True.
    '''
    if len(response.content) < 50:
        return False
    return True

Example 2

def infer(self, response):
    '''
    If response status code is 200, it's True
    Otherwise, it's False
    '''
    if response.status_code == 200:
        return True
    return False

About

A multiprocessing blind SQL injection script to handle cases where sqlmap fails.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages