Skip to content
KitploitKITPLOIT
उपकरणब्लॉग
जमा करें
उपकरणब्लॉग
जमा करें

हैकिंग, पेनटेस्ट और साइबर सुरक्षा उपकरण आपके सुरक्षा शस्त्रागार के लिए!

Kitploit हैकिंग, साइबर सुरक्षा और पेंटेस्टिंग टूल्स की एक निर्देशिका है। कमजोरियों को खोजने, सिस्टम का विश्लेषण करने, परीक्षण को स्वचालित करने और अपनी सुरक्षा को मजबूत करने के लिए नवीनतम प्रोजेक्ट अपडेट खोजें।

··फ़ीड·संपर्क·गोपनीयता·© 2026 Kitploit

टूल निर्देशिका

श्रेणियाँ

सभी श्रेणियाँ देखें
Loading categories
Wordpresscan — WPScan पायथन में पुनर्लिखित + कुछ WPSeku विचार | Kitploit
उपकरण/GitHubGitHub/swisskyrepo/wordpresscan
टोहीभेद्यता स्कैनरवेब भेद्यता स्कैनरपासवर्ड हमलेजानकारी एकत्र करनावेब सुरक्षाArchived
GitHubswisskyrepo/wordpresscan

Wordpresscan

WPScan पायथन में पुनर्लिखित + कुछ WPSeku विचार

रिपॉजिटरी देखें
653202105 साल पहलेKitploit द्वारा समीक्षित

सबसे लोकप्रिय

सभी देखें →

हमारे समुदाय द्वारा सबसे अधिक उपयोग किए जाने वाले उपकरण खोजें।

सभी उपकरण खोजें

हमारे उपकरणों का संग्रह ब्राउज़ करें

सभी उपकरण देखें →
साझा करें

Wordpresscan

पायथन में लिखा गया एक सरल वर्डप्रेस स्कैनर, जो WPScan (Ruby संस्करण) के कार्य पर आधारित है, कुछ सुविधाएँ WPSeku से प्रेरित हैं।

अस्वीकरण

root@kitploit:~
The authors of this github are not responsible for misuse or for any damage that you may cause!
You agree that you use this software at your own risk.

स्थापना और लॉन्च

स्थापना

root@kitploit:~
git clone https://github.com/swisskyrepo/Wordpresscan.git
cd Wordpresscan

वर्चुअलएनवी

root@kitploit:~
virtualenv .venv -p /usr/bin/python2.7
source .venv/bin/activate
pip install -r requirements.txt

उदाहरण

उदाहरण 1 : एक वर्डप्रेस का बुनियादी अपडेट और स्कैन

root@kitploit:~
python wordpresscan.py -u "http://localhost/wordpress" --update --random-agent

-u : Url of the WordPress
--update : Update the wpscan database
--aggressive : Launch an aggressive version to scan for plugins/themes
--random-agent : Use a random user-agent for this session

उदाहरण 2 : बुनियादी ब्रूटफोर्स (विकल्प --brute, विकल्प --nocheck)

  • कस्टम उपयोगकर्ता नामों का ब्रूटफोर्स
root@kitploit:~
python wordpresscan.py -u "http://127.0.0.1/wordpress/" --brute --usernames "admin,guest" --passwords-list fuzz/wordlist.lst
  • उपयोगकर्ता नामों की सूची के साथ ब्रूटफोर्स
root@kitploit:~
python wordpresscan.py -u "http://127.0.0.1/wordpress/" --brute --users-list fuzz/wordlist.lst --passwords-list fuzz/wordlist.lst
  • पहचाने गए उपयोगकर्ताओं का ब्रूटफोर्स
root@kitploit:~
python wordpresscan.py -u "http://127.0.0.1/wordpress/" --brute --passwords-list fuzz/wordlist.lst
root@kitploit:~
╭─ 👻 swissky@crashlab: ~/Github/Wordpresscan  ‹master*›
╰─$ python main.py -u "http://127.0.0.1/wordpress/" --brute --users-list fuzz/wordlist.lst --passwords-list fuzz/wordlist.lst --nocheck       
_______________________________________________________________
 _    _               _                                         
| |  | |             | |                                        
| |  | | ___  _ __ __| |_ __  _ __ ___  ___ ___  ___ __ _ _ __  
| |/\| |/ _ \| '__/ _` | '_ \| '__/ _ \/ __/ __|/ __/ _` | '_ \
\  /\  / (_) | | | (_| | |_) | | |  __/\__ \__ \ (_| (_| | | | |
 \/  \/ \___/|_|  \__,_| .__/|_|  \___||___/___/\___\__,_|_| |_|
                       | |                                      
                       |_|                                      
 WordPress scanner based on wpscan work - @pentest_swissky      
_______________________________________________________________
[+] URL: http://127.0.0.1/wordpress/

[!] The Wordpress 'http://127.0.0.1/wordpress/readme.html' file exposing a version number: 4.4.7
[i] Uploads directory has directory listing enabled : http://127.0.0.1/wordpress/wp-content/uploads/
[i] Includes directory has directory listing enabled : http://127.0.0.1/wordpress/wp-includes/

[i] Bruteforcing all users
[+] User found admin
[+] Starting passwords bruteforce for admin
Bruteforcing - ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░

उदाहरण 3 : सोचना बेकार है, यह आक्रामक है, अधिकतर सलाह नहीं दी जाती!

root@kitploit:~
python wordpresscan.py -u "http://127.0.0.1/wordpress/" --fuzz

[i] Enumerating components from aggressive fuzzing ...
[i] File: http://127.0.0.1/wordpress/license.txt - found
[i] File: http://127.0.0.1/wordpress/readme.html - found
[i] File: http://127.0.0.1/wordpress/wp-admin/admin-footer.php - found
[i] File: http://127.0.0.1/wordpress/wp-admin/css/ - found
[i] File: http://127.0.0.1/wordpress/wp-admin/admin-ajax.php - found
[i] File: http://127.0.0.1/wordpress/wp-activate.php - found
--fuzz :  Will fuzz the website in order to detect as much file, themes and plugins as possible

परीक्षण वातावरण से आउटपुट उदाहरण

उदाहरण आउटपुट

परीक्षण वातावरण तैनात करें

root@kitploit:~
docker-compose -f wordpress_compose.yml up -d

wp-json API को सक्षम करने के लिए आपको सेटिंग्स में "Permalink" को "simple" के अलावा कुछ और बदलना होगा।

श्रेय और योगदानकर्ता

  • WPScan Team से मूल विचार और स्क्रिप्ट
  • bl4de से कई PR और बगफिक्स
टूल डाउनलोड करें