Skip to content

Instantly share code, notes, and snippets.

,gggg,
,88"""Y8b, ,dPYb,
d8" `Y8 IP'`Yb
d8' 8b d8 I8 8I
,8I "Y88P' I8 8'
I8' ,ggggg, I8 dP ,gggg,gg gg gg
d8 dP" "Y8ggg I8dP dP" "Y8I I8 8I
Y8, i8' ,8I I8P i8' ,8I I8, ,8I
`Yba,,_____, ,d8, ,d8' ,d8b,_ ,d8, ,d8I ,d8b, ,d8I
You see the following people here:
Landon, Serra, Alanar, Mycen, Rollanz, Minxie, Korolath, Zelia, Keorin, Ibor, Yikez, Tankara, Ainly, Sothantos, Danna, Argwin, Garros, Ellenroh, Colgano, Vadanea, Leiri, Cherryanne, Vinceres, Santar, Tofi, Desin, Avianca, Vinzent, Shirim, Mina, Kondar, Paisly, Maelyn, Jiah, Balsam, Iohanna, Tukio, Johlo, Irissa, Naoma, Tarvius, Imyrr, Candi, Lynara, Gurklukke, Senoske, Azuros, Shirszae, Auri, Havyn, Ploutos, Auria, Atalkez, Ellowyne, Meriet, Exivus, Oceana, Torrent, Phthia, Jakiro, Clarinna, Abuha, Aelyn, Aeka, Miceal, Haastig, Gaia, Krystahle, Kero, Valaria, Ioheli, Giddieon
Stirring the undergrowth, the hushed cadence of the Earthmother resonates, "It is time."
The crackle of lightning accompanies Speaker Colgano Vorondil, Savage Reaper's voice as he shouts, "Anachai, Tionalaim."
Amberous spores drift through the atmosphere, petrifying into the perennial form of the Earthmother.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artemis Archives.html</title>
<link rel="stylesheet" href="https://stackedit.io/style.css" />
</head>
function serpentlockprio()
vcombo = {nil}
--Primary Venom Selection
if affstrack.score.weariness > 24 and affstrack.score.impatience > 24 and affstrack.score.asthma > 24 then
if affstrack.score.slickness < 100 then
table.insert(vcombo,"gecko")
end
if affstrack.score.anorexia < 100 then
table.insert(vcombo,"slike")
end
@ndsamuelson
ndsamuelson / Hashing.md
Last active December 15, 2021 07:30
Hashing ecryption and encoding

Hashing

Hashing, encryption and encoding (by Michal Špaček)

Hashing

plaintext ➡️ hash hash ⛔ plaintext

Symmetric encryption

@ndsamuelson
ndsamuelson / README.md
Last active May 1, 2024 07:04
Tor Authentication via Control Port

Authentication to Tor via ControlPort

I'm using cookie authentication


Cookie authentication simply means that your credential is the content of a file in Tor's DataDirectory. You can learn information about Tor's method of authentication (including the cookie file's location) by calling PROTOCOLINFO.

@ndsamuelson
ndsamuelson / crackzip.py
Created December 4, 2021 12:25
Crack zip files with wordlist
"""[summary]
"""
from tqdm import tqdm
import zipfile
protected_file = input("Zip file: ")
wordlist = input("Choose wordlist: ")
try:
zip_file = zipfile.ZipFile(protected_file)
@ndsamuelson
ndsamuelson / anon.sh
Last active December 2, 2021 11:46
anonfiles/bayfiles/fichier bash thing
#!/bin/bash
# My name is ba-download.sh
# Usage ./ba-download.sh "bayfiles/anonfiles_URL"
# OR without argument and paste to the prompt ...
# Dependencies: System Tor OR Tor Browser running, curl
# Set minimal download_rate limit here ( Ko )
min_rate="150"
tcurl() {
@ndsamuelson
ndsamuelson / digital-clock-in-javascript.markdown
Created March 14, 2019 23:35
Digital Clock In JavaScript