Sqlmap Automatic Injection (ii)-request and Sqlmap automatic injection (iii)-optimization
SQLMAP Automatic Injection-----REQUEST
--delay
Delay time between each HTTP (s) request, floating-point number in seconds, default no delay
--timeout
Request time-out, floating-point number, default is 30 seconds
--retries
HTTP (s) connection Timeout retry count, default 3 times
--randomize
Specifies the parameter name of the random value for each request, if the length, type, and the original value are consistent
SQLMAP Automatic Injection-----REQUEST
--scope
Filtering log content, filtering scanned objects with regular expressions
Sqlmap-l burp.log--scope= "(www)? \.target.\. (com|net|org) "
Sqlmap-l 2.log--scope= "(19)? \.168\.20\. (1|10|100) "--level 3-dbs
Injection points in the User-agent
--safe-url/--safe-freq
The detection and blind phases generate a large number of failed requests and the server side may destroy the session
Send a normal request after each--safe-freq injection request
[Email protected]:~# sqlmap-l burp.log--scope= "(19) \.168\.1\. (1|11|121|221) "--dbs
[Email protected]:~# sqlmap-l burp.log--scope= "(19) \.168\.1\. (1|11|121|221) "--level 3-dbs
SQLMAP Automatic Injection-----REQUEST
--sik-urlencode
The default get method encodes the transmitted content, and some Web servers do not follow the RFC standard encoding.
Submitting data using raw characters
--eval
Execute the specified Python code before each request
Each request to change or add a new parameter value (time dependency, other parameter value dependency)
Sqlmap-u
"Http://1.1.1.1/a.php?id=1&hash=c4ca4238a0b923820dcc509a6f75849b"
--eval= "Import hashlib;hash=hashlib.md5 (ID). Hexdigest ()"
SQLMAP Automatic Injection-----optimization
Optimize performance
--predict-output
According to the test method, compare the contents of return value and statistic value, reduce the detection range and improve the detection efficiency.
Version name, user name, password, privileg, role, database name, table name, column name
Incompatible with the--threads parameter
Statistics:/usr/share/sqlmap/txt/common-outputs.txt
--keep-alive
Good performance with HTTP (s) long connections
Incompatible with the--proxy parameter
Long connections avoid the network overhead of repeatedly establishing connections, but a large number of long connections can seriously consume server resources
SQLMAP Automatic Injection-----optimization
--null-connection
Get only the size value of the corresponding page, not the page content
Usually used for blind to determine true/false, reducing network bandwidth consumption
Incompatible with the--text-only parameter (TRUE/False based on page content comparison)
--threads
Maximum concurrent threads
Blind when each thread gets one character (7 requests). Get finished thread results
The default value is 1, no more than 10 is recommended, or it may affect site availability
Incompatible with the--predict-output parameter
-O open top three performance parameters (except--threads parameters)
This note is for safe Cattle class student notes, want to see this course or information security of dry goods can go to safe cattle classes
security+ Certification Why is the Internet + era of the most popular certification?
Manifesto first introduce you to security+
security+ certification is a neutral third-party certification, the issuing agency for the United States Computer Industry Association CompTIA, and CISSP, ITIL and other common inclusion of the international IT Industry 10 Popular certification, and CISSP emphasis on information security management, compared to security+ Authentication is more emphasis on information security technology and operations.
This certification demonstrates your ability to network security, compliance and operational security, threats and vulnerabilities, application, data and Host security, access control and identity management, and encryption technology. Because of its difficult examination difficulty, the gold content is high, has been widely adopted by global enterprises and security professionals.
Why is security+ certification so hot?
Reason one: In all information security certification, the emphasis on information security technology certification is blank, security+ certification can make up for the gap in the field of information security technology.
currently recognized in the industry of information security certification mainly Cisp and CISSP, but whether cisp or CISSP are emphasis on information security management, technical knowledge is broad and simple, the exam is around. And CISSP require a certificate of information security work experience for more than 5 years, Cisp also require a college education 4 years of working experience, these requirements will undoubtedly be able and motivated young people of the road blocked. In the real world, whether it is looking for a job or a raise, or a tender time to report personnel, certification is essential, which brings a lot of injustice to young people. The emergence of security+ can clear these young people career development obstacles, because security+ emphasis on information security technology, so there is no special requirements for work experience. As long as you have an IT-related background, the pursuit of progress can be studied and tested.
Reason two: it operation and maintenance personnel work and turn over the weapon.
in the banking, securities, insurance, information and communications industries, IT operations personnel are very many, it operations involved in the face is also very wide. is a network, system, security, application architecture, storage as one integrated technology post. Although no program ape "born as a Bachelor, Die also write code," The solemn and tragic, but also has "Hoe wo Day Copse, as the operation of suffering" feeling. Every day to the computer and machine, the time has been inevitable for career development confusion and confusion. The advent of security+ international certification allows the pursuit of IT operations personnel to learn network security knowledge, to master network security practices. Career development in the direction of network security, to solve the problem of the shortage of information security personnel in China. In addition, even if not transformation, to do a good job in operation and maintenance, learning safety knowledge to obtain safety certification is also essential.
Reason three: grounding gas, international stylish, easy to test, moderate cost!
As the most influential global leader in the global ICT sector, CompTIA is professional, fair and impartial in the field of information security talent certification. Security+ certification is highly operational and closely related to the daily work of frontline engineers. Suitable for banks, securities, insurance, internet companies and other IT-related personnel learning. As an international certification in 147 countries around the world are widely recognized.
Under the current tide of information security, talent is the key to the development of information security. and the current domestic information security personnel is very scarce, I believe security+ certification will become the most popular information security certification.
"Safe Cow Study Notes" Sqlmap Automatic injection (ii)