Skip to content

Instantly share code, notes, and snippets.

View thisiskeanyvy's full-sized avatar
:atom:
working

Keany Vy KHUN thisiskeanyvy

:atom:
working
View GitHub Profile
@thisiskeanyvy
thisiskeanyvy / generator.py
Created March 8, 2021 08:51
Keygen pour la génération d'une wordist de date d'anniversaire avec 8char.
# - Programme par: Keany Vy KHUN
# - Projet: Birthdeath
# - Description: Programme d'attaque par force brute pour date d'anniversaire
# - Status: Fonctionnel
from calendar import monthrange
year = 2005
month = 1
day = monthrange(year, month)[1]
@thisiskeanyvy
thisiskeanyvy / resetPlateau.gs
Last active July 31, 2022 20:15
BrainPower script de reset des positions pour google sheet
//Script de reset des position
function resetPlateau() {
var sheet = SpreadsheetApp.getActiveSheet();
var data = sheet.getDataRange().getValues();
for(var i = 4; i < 20; i++) {
//Logger.log('Get num :' + data[i][0]);
var num = i - 4;
var tab = i + 1;
//Tableau Millitaire
@thisiskeanyvy
thisiskeanyvy / unsplash.py
Created May 15, 2021 19:16
Générateur d'images aléatoires, implémenté avec l'api unsplash
import random, os, urllib.request
nbdownload = 100 #nombre d'images à générer
def program():
init()
download()
def init():
print("""
@thisiskeanyvy
thisiskeanyvy / GithubRandRepo.py
Last active July 31, 2022 20:14
add comment
"""
Code by: Keany Vy KHUN
Description: Call github api to GET random repo
"""
import requests, json
from requests.packages.urllib3.exceptions import InsecureRequestWarning
from time import sleep
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
@thisiskeanyvy
thisiskeanyvy / ent_auth.py
Last active July 31, 2022 20:15
Un script pour se connecter à l'ent via une requête POST
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
# remove ssl certificate
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
# ent login
username=""
password=""
@thisiskeanyvy
thisiskeanyvy / randlike.py
Created October 5, 2021 15:18
Github autolike
"""
Code by: Keany Vy KHUN
Description: Call github api to GET random repo
"""
#pip3 install selenium
#pip3 install requests
#pip3 install json
"""
@thisiskeanyvy
thisiskeanyvy / autopost.py
Created October 5, 2021 15:21
Instagram autopost
import config
import urllib.request
from datetime import date
from instabot import Bot
#variables
today = date.today();
bot = Bot()
bot.login(username = "yourusername", password = "yourpassword");
@thisiskeanyvy
thisiskeanyvy / dl.py
Created October 5, 2021 15:24
Download Books
import json, requests, os
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
if not os.path.exists("livre"):
os.makedirs("livre")
with open("pages.json") as file:
tab = json.loads(file.read())
@-webkit-keyframes hideThenRecreate {
from {
visibility: hidden;
}
to {
visibility: visible;
}
}
@keyframes hideThenRecreate {
@thisiskeanyvy
thisiskeanyvy / autoview.py
Created December 7, 2021 17:39
Instagram auto viewer
"""
Watch user likers stories!
This script could be very useful to attract someone's
audience to your account.
If you will not specify the user_id, the script will use
your likers as targets.
Dependencies:
pip install -U instabot