I want to write a script that pulls certain page post when that scrpit is run or executed.
Forum Thread: How Can I Pull FB Page Posts Using Python?
- Hot
- Active
-
Forum Thread: How to Hack Android Phone Using Same Wifi 28 Replies
18 hrs ago -
Forum Thread: How to Hack Wireless Password Through MAC Address and IP Address 25 Replies
4 days ago -
Forum Thread: Complete Guide to Creating and Hosting a Phishing Page for Beginners 50 Replies
1 wk ago -
Forum Thread: HELP I Created an Apk for Hacking My Phone Using Kali Linux in Virtual Box How Can I Install That Apk on My Phone 18 Replies
3 wks ago -
Forum Thread: Mitm attack problem 2 Replies
4 wks ago -
Forum Thread: Hack and Track People's Device Constantly Using TRAPE 32 Replies
1 mo ago -
Metasploit Error: Handler Failed to Bind 40 Replies
1 mo ago -
Forum Thread: How to Know if You Are a Script Kiddie? 9 Replies
1 mo ago -
Forum Thread: How to Identify and Crack Hashes 8 Replies
1 mo ago -
Forum Thread: How to Hack School Website 8 Replies
1 mo ago -
Forum Thread: Whenever I Try "Airmon-Ng Start wlan0" There's an Error? 16 Replies
1 mo ago -
Forum Thread: How to Fix 'Failed to Detect and Mount CD-ROM' Problem When Installing Kali Linux 14 Replies
1 mo ago -
Forum Thread: Awesome Keylogging Script - BeeLogger 30 Replies
2 mo ago -
Forum Thread: Create and Use Android/Meterpreter/reverse_tcp APK with Msfvenom? 121 Replies
2 mo ago -
How to: Minecraft DoS'Ing with Python. 1 Replies
3 mo ago -
Forum Thread: Tools for Beginner Hacker 3 Replies
3 mo ago -
Forum Thread: How to Embed an Android Payload in an Image? 9 Replies
4 mo ago -
Forum Thread: Metasploit reverse_tcp Handler Problem 46 Replies
4 mo ago -
Forum Thread: HACK ANDROID with KALI USING PORT FORWARDING(portmap.io) 11 Replies
4 mo ago -
Forum Thread: Fix Initramfs Problem 5 Replies
4 mo ago
-
How To: Enumerate SMB with Enum4linux & Smbclient
-
How To: Exploit EternalBlue on Windows Server with Metasploit
-
How To: Crack Shadow Hashes After Getting Root on a Linux System
-
How To: Dox Anyone
-
How to Hack Wi-Fi: Stealing Wi-Fi Passwords with an Evil Twin Attack
-
How To: Gain SSH Access to Servers by Brute-Forcing Credentials
-
BT Recon: How to Snoop on Bluetooth Devices Using Kali Linux
-
How To: The Hacks Behind Cracking, Part 1: How to Bypass Software Registration
-
How To: Brute-Force Nearly Any Website Login with Hatch
-
How To: Crack Password-Protected Microsoft Office Files, Including Word Docs & Excel Spreadsheets
-
How To: Scan for Vulnerabilities on Any Website Using Nikto
-
How To: Scan Websites for Interesting Directories & Files with Gobuster
-
How To: Use Kismet to Watch Wi-Fi User Activity Through Walls
-
How To: Find Identifying Information from a Phone Number Using OSINT Tools
-
Android for Hackers: How to Turn an Android Phone into a Hacking Device Without Root
-
How to Hack Wi-Fi: Cracking WPA2 Passwords Using the New PMKID Hashcat Attack
-
How to Hack Wi-Fi: Cracking WPA2-PSK Passwords Using Aircrack-Ng
-
How To: Perform Advanced Man-in-the-Middle Attacks with Xerosploit
-
How To: Write an XSS Cookie Stealer in JavaScript to Steal Passwords
-
Hack Like a Pro: How to Find Directories in Websites Using DirBuster
7 Responses
You can, but god it's not easy. There is a module that does it (idk if its still UTD). You could use requests and use cookies but there are multiple pages that processes the cookies.
Maybe a mechanize module? I don't know that much but it is supposed to work as a browser or something.
You could use the requests module to pull the HTML code for that post down. You could then parse the HTML and you'd be left with the post in plaintext.
-Defalt
in addition to what Defalt said I've had a lot of success using beautiful soup for parsing raw html. you may also want to look into selenium.
~Suser
I've been experimenting/messing with Beautifulsoup.
It seems to pull the html code directly off the webpage and stores it in a text file,
then the programmer can use prettify() to make it organized,
and can search specific elements within the text file of html code.
I think it was findAll("html element")
what software do you use for coding in python? curiousity
Really I am using kali linux 2.0 and using a text editor called jEdit to code in python. And I write code in python3 :)
Share Your Thoughts