Skip to main content

How to install Words-scraper Tool in linux without Error

 Hello guys in this article i'm going to show you How to scrape words from website's & social media's 


First of all we should know why we use this tool. This word's scraper tool generally used to brute-force attack. we know if Get any social media or any website with brute-force attack, the password list is must. in this place this words-scraper tool helps lot. If you get any social media or website with brute-forceattack mostly you choose random password list but this tool help you to make victim related password list  

Requirements:

  • Linux
  • internet
  • Firefox webdriver

How to install firefox webdriver?

Step 1:

First we are going to download the Firefox webdriver package.so click this blow website link

https://github.com/mozilla/geckodriver/releases

 

After click this link this website show above the image. now you download firefox webdrive.

Step 2:

Now we need to extract that package. after that we will get geckodriver 




Step 3:

Now we need to give the permission of read & write and execute the geckodriver by using following command.

First open your terminal on that folder after that you will type blow the command.

chmod +x geckodriver

 

Step 4:

Now we move the geckodriver in our local bin folder so type the below command


sudo mv geckodriver /usr/local/bin

Yes now the geckodriver installation was completed.

How to make password list with words-scraper?

Step 1:

First we are going to clone the words-scraper package in to our directory with help of git command 

git clone https://github.com/dariusztytko/words-scraper.git


Step 2:

Now we have words-scraper folder on our directory. open that folder using this below command.

cd  words-scraper

After open the folder we are going to install the requirements of words-scraper tool so type this below command.

sudo pip3 install -r requirements.txt


 


Step 3:

Now we need to give the permission of read & write and execute the words-scraper by using following command.

chmod +x words-scraper.py


 Step 3:

After that you need to run the following order to run the words-scraper

python2 words-scraper.py

This above command will show all attribute explanation and how to use this tool. 

 

Step 4:

Now scrape words from your target website page so run the following command.

python3 words-scraper.py -o triplezero.txt ( you target website name with protocols)  

 





 

Scraping words from the target's pages:

python3 words-scraper.py -o words.txt https://www.example.com https://blog.example.com 




Such generated words list can be used to perform online brute-force attack or for cracking password hashes:
 hashcat -m 0 hashes.txt words.txt



Use --depth option to scrape words from the linked pages as well. Optional --show-gui switch may be used to track the progress and make a quick view of the page:

python3 words-scraper.py -o words.txt --depth 1 --show-gui https://www.example.com



Generated words list can be expanded by using words-converter.py script. This script removes special chars and accents. An example Polish word źdźbło! will be transformed into the following words:
źdźbło!
zdzblo!
źdźbło
zdzblo

cat words.txt | python3 words-converter.py | sort -u > words2.txt


Scraping words from the target's Twitter

Twitter page is dynamically loaded while scrolling. Use --max-scrolls option to scrape words:

python3 words-scraper.py -o words.txt --max-scrolls 300 --show-gui https://twitter.com/example.com


Scraping via Socks proxy

ssh -D 1080 -Nf {USER-HERE}@{IP-HERE} >/dev/null 2>& $ python3 words-scraper.py -o words.txt --socks-proxy 127.0.0.1:1080 https://www.example.com


DOWNLOAD WORDS-SCRAPER




Comments

Popular posts from this blog

Sslyze-analyze the SSL configuration of a server by connecting to it

 What is SSLyze? SSLyze is a Python tool that can analyze the SSL configuration of a server by connecting to it. It is designed to be fast and comprehensive, and should help organizations and testers identify mis-configurations affecting their SSL servers. Feature of Sslyze Multi-processed and multi-threaded scanning (it’s fast) SSL 2.0/3.0 and TLS 1.0/1.1/1.2 compatibility Performance testing: session resumption and TLS tickets support Security testing: weak cipher suites, insecure renegotiation, CRIME, Heartbleed and more Server certificate validation and revocation checking through OCSP stapling Support for StartTLS handshakes on SMTP, XMPP, LDAP, POP, IMAP, RDP and FTP Support for client certificates when scanning servers that perform mutual authentication XML output to further process the scan results How to install sslyze Just you type this below command in your terminal this command's will help you to install sslyze on your computer and termux. Linux sudo apt-get install ssl...

xprobe2 - A Remote active operating system fingerprinting tool

What is Xprobe2? xprobe2 - A Remote active operating system fingerprinting tool xprobe2 is an active operating system fingerprinting tool with a different approach to operating system fingerprinting. xprobe2 relies on fuzzy signature matching, probabilistic guesses, multiple matches simultaneously, and a signature database. The operation of xprobe2 is described in a paper titled " xprobe2 - A 'Fuzzy ' Approach to Remote Active Operating System Fingerprinting" Option's How to install Xprobe2 First you need to open your terminal after that you type this below command in your terminal this command will help you to install this xprobe2 package. Linux sudo apt install xprobe Termux pkg install xprobe How to use xprobe Just use this below command or see this below image. sudo xprobe2 ( Domain name ) Example's xprobe2 -v -D 1 -D 2 192.168.1.10 Will launch an OS fingerprinting attempt targeting 192.168.1.10. Modules 1 and 2, which are reachability tests, will be di...

Root android phone with one click without computer

 What is framaroot? Framaroot is a free android app which can root almost every device in one click without any need of PC/Computer. Framaroot has its own complex exploits which vary from device to device according to its chipset model and android version. In newer versions of Framaroot, you can unroot your android phone in one click too Feature of Framaroot Root android phone with one click Install SuperSu Unroot or execute Advanced user How to Download and install Framaroot First you download framaroot application on your android phone so click this below download button. Now Install it with a file explorer or directly from your internet browser, if android warn you about security risk, say OK and check Unknown sources to allow install of applications outside of Play Store. How to use Open your Framaroot and select one of the following action: Install SuperSU, Unroot or Execute script (for advanced users) Possible case once application is launched A popup saying "Your device see...