Skip to content

Instantly share code, notes, and snippets.

View sajjadhossanshimanto's full-sized avatar

Sajjad hossan sajjadhossanshimanto

View GitHub Profile
<!DOCTYPE html>
<html>
<body>

    <table border="1">
    <tr>
    <td align="center"> A
	
@sajjadhossanshimanto
sajjadhossanshimanto / anvi_flocker_defender.py
Last active May 24, 2021 09:24
all in one hack for anvi folder lock. bypass password. reveal and view hidden folders.
import os
from time import sleep
from msvcrt import getch
import sys
import ctypes
from os.path import join
from subprocess import getoutput
def my_print(*args, **kwargs):
# encoding: utf8
# vigenere cipher
# https://stackoverflow.com/a/2490718/1675586
def encode(key, string):
encoded_chars = []
for i in range(len(string)):
key_c = key[i % len(key)]
encoded_c = chr(ord(string[i]) + ord(key_c) % 256)
encoded_chars.append(encoded_c)
@sajjadhossanshimanto
sajjadhossanshimanto / diskio.py
Last active January 9, 2021 05:25
First time ever Windows disk Active time optimiser with python 3 .
'''
::howto:::
just import safe_disk and use
safe_disk.wait() where you might want to pause execution until
disk use becomes normal and that's it, as simple as it but very very
Usefull.also you may wnat to change the max_disk value
'''
from subprocess import Popen, PIPE