Skip to content

Instantly share code, notes, and snippets.

View dubs3c's full-sized avatar
😈
I solemnly swear that I am up to no good

dubs3c dubs3c

😈
I solemnly swear that I am up to no good
View GitHub Profile
@dubs3c
dubs3c / cuckoo-install.sh
Last active February 3, 2024 10:35
Cuckoo Sandbox dependency install script for Ubuntu 20.04
#!/bin/bash
#
# Cucko Sanbox install script
# -----------------------------
# Tested on Ubuntu 20.04 LTS
# ~ dubs3c
#
# Add virtualbox repo to system
/*
Copyright (c) 2016, Nitin Gode
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
### Keybase proof
I hereby claim:
* I am dubs3c on github.
* I am dubell_truesec (https://keybase.io/dubell_truesec) on keybase.
* I have a public key ASCS39W1iLEBWUbVg34npt6oswJP3Uil2GR5q1HQSj5SEwo
To claim this, I am signing this object:
alias.lg log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
@dubs3c
dubs3c / bf.py
Created January 10, 2023 12:43
brrute force login using selenium
import time
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.chrome.options import Options
def crack(driver, pin:str):
driver.get("https://<website>");
login_btn = driver.find_element(By.XPATH, "<xpath>")
driver.implicitly_wait(1)