This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import sys | |
import requests | |
import string | |
import os | |
import subprocess | |
from pathlib import Path | |
debug = True |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html> | |
<html xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' | |
xmlns:data='http://www.google.com/2005/gml/data' | |
xmlns:expr='http://www.google.com/2005/gml/expr'> | |
<head> | |
<meta charset='utf-8' /> | |
<meta content='width=device-width, initial-scale=1' name='viewport' /> | |
<title> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
curl -s https://data.bmkg.go.id/DataMKG/TEWS/autogempa.json | jq |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import random | |
import requests | |
import secrets | |
import time | |
import string | |
from faker import Faker | |
url = "" # phising url you need to attack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" data-theme="dark"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Log In</title> | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css"> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theme=$(find "$HOME/.cache/oh-my-posh/themes/" -type f | shuf -n 1) | |
eval "$(oh-my-posh init bash --config $theme)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/python | |
import os | |
USER_FONTS_DIR = "C:\\Users\\<USER>\\AppData\\Local\\Microsoft\\Windows\\Fonts\\" | |
WINDOWS_FONTS_DIR = "C:\\Windows\\Fonts\\" | |
def main(): | |
for i in os.listdir(USER_FONTS_DIR): | |
f = WINDOWS_FONTS_DIR + i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Go to home directory | |
cd ~ | |
# Rename all directories | |
mv Desktop desktop | |
mv Documents documents | |
mv Downloads downloads | |
mv Music music |