Skip to content

Instantly share code, notes, and snippets.

View z7pz's full-sized avatar
🔥
It's person that would never waver

Ahmed Falih Al-kraidi z7pz

🔥
It's person that would never waver
View GitHub Profile
@z7pz
z7pz / wiki-100k.txt
Created October 17, 2022 13:09 — forked from h3xx/wiki-100k.txt
Wictionary top 100,000 most frequently-used English words [for john the ripper]
#!comment: This is a list of the top 100,000 most frequently-used English words
#!comment: according to Wiktionary.
#!comment:
#!comment: It was compiled in August 2005 and coalesced into a handy list for
#!comment: use in John the Ripper.
#!comment:
#!comment:
#!comment: Pull date: Sun Jan 15 22:03:54 2012 GMT
#!comment:
#!comment: Sources:
@z7pz
z7pz / 1-1000.txt
Created October 17, 2022 13:08 — forked from deekayen/1-1000.txt
1,000 most common US English words
the
of
to
and
a
in
is
it
you
that
@z7pz
z7pz / LICENSE.md
Created October 27, 2021 17:31
Open Source license templates

Apache License, Version 2.0

Copyright <YEAR> <OWNER>

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0
@z7pz
z7pz / discord-token-logger.js
Created October 23, 2021 11:07 — forked from m-Phoenix852/discord-token-logger.js
Simple script to log in to discord account using token.
let token = "your token";
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}