BePractical – Telegram
BePractical
7.4K subscribers
232 photos
24 videos
6 files
395 links
If you have any doubts then email at faiyazahmad.online@gmail.com
Download Telegram
Source code of broken link detector
Forwarded from Jay
import requests #Send get or post request to the server
import subprocess # Execute system commands
import os


def scan_links(domainName):
subprocess.call(f"python3 photon.py -u http://{domainName} -l 3",shell=True)
os.chdir(domainName)
try:
with open("external.txt","r") as data:
links = data.read().split()
except:
print("File not found")
return None
return links

def broken(list):
for url in list:
status_code = requests.get(url).status_code
if status_code == 404:
print(f"[+] Link: {url} is vulnerable")
else:
pass

a = scan_links(input("Enter a domain name: "))
b = broken(a)
4👍1
A huge shout out to the top 3 winners(Nitesh Gupta Vaibhav Jain Manav Surti) of The Bug Quest! The winners have got:
-> Prize Money
-> Paid Internship from TMG Security
-> Try Hack Me Vouchers
-> Two courses worth $100
and a certificate

We are really grateful to everyone who has participated in this event and want to show our gratitude to Mayank Gandhi and his company TMG Security for making this event a huge success!
6👍2
Hey everyone! New video will be releasing tomorrow and with this one, we are going to start a new & exciting journey of bug bounty
5👍5
Do you want us to organize more awesome events?
Anonymous Poll
91%
Yes
9%
No
Working hard for the next video. Hope you all like it, It will be releasing tomorrow! Stay tuned ❤️
👍42
From the above picture, take a guess of tomorrow's topic
Anonymous Poll
27%
Cross Site Scripting
54%
File Upload Vulnerabilities
13%
Local File Inclusion
6%
Reconnaissance
👍3🔥3
Hi everyone! Hope you all are doing well. I am so glad to inform that our YouTube channel have just hit over 6K subscribers. I never thought that I would reach this far when I uploaded my first ever video on the platform. I want to thank you all from the bottom of my heart to keep supporting the channel throughout this time❤️

Keep learning & Keep Hacking
🔥134👍1
Currently for $1(It will expire soon)
Probably the best course for all level of learners
How much would you rate my latest video?
Anonymous Poll
58%
Learned something new
8%
Already knew about it
29%
Awesome
5%
Need Improvement
Hi everyone, Lot of you are asking questions about the account takeover lab. As we changed the tech stack of our website, it is not possible for us now to upload the same labs on our server. However, we are planning to bring new labs that deals with the latest vulnerability in the real world. Stay tuned
9