-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate_decoys.sh
More file actions
executable file
Β·138 lines (110 loc) Β· 3.63 KB
/
generate_decoys.sh
File metadata and controls
executable file
Β·138 lines (110 loc) Β· 3.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/bin/bash
# π Fake Secret Files Generator
# Creates hilariously fake "secret" files to confuse snoops
DECOY_DIR="/home/pinky/fragle/.secrets_do_not_look"
mkdir -p "$DECOY_DIR"
echo "πͺ Generating decoy files to confuse snoops..."
echo ""
# Fake password file
cat > "$DECOY_DIR/PASSWORDS.txt" << 'EOF'
# TOP SECRET PASSWORDS
# DO NOT SHARE!!!
GitHub Password: hunter2
Admin Password: password123
Root Password: correcthorsebatterystaple
Secret API Key: nice_try_snooper_π
Nuclear Launch Codes: 00000000
Cookie Vault Access: just_ask_nicely
# If you're reading this, you've been pranked!
# These aren't real passwords, silly.
# The real password is: β¨friendshipβ¨
EOF
# Fake master plan
cat > "$DECOY_DIR/MASTER_PLAN.md" << 'EOF'
# π― THE MASTER PLAN
## Phase 1: Cookie Acquisition
- [ ] Infiltrate cookie jar
- [ ] Befriend the baker
- [ ] Learn the ancient cookie recipe
## Phase 2: World Domination via Cookies
- [ ] Open cookie shop
- [ ] Make really good cookies
- [ ] Everyone loves us
- [ ] Profit???
## Phase 3: ???
- [ ] Something about blockchain
- [ ] AI-powered cookies
- [ ] Cookies in the metaverse
- [ ] Cookie NFTs (just kidding, those are terrible)
## Final Phase: Retirement
- [ ] Eat all remaining cookies
- [ ] Take a nap
- [ ] Write memoirs: "How I Conquered the World with Cookies"
---
*If you're reading this, you fell for the trap! πͺ€*
*The real plan is in the friends we made along the way.*
EOF
# Fake treasure map
cat > "$DECOY_DIR/treasure_map.txt" << 'EOF'
πΊοΈ TREASURE MAP TO HIDDEN BITCOINS πΊοΈ
Start at the old oak tree (you know the one)
Walk 42 steps north (or south, we forgot)
Turn left at the singing frog
Dig 6 feet under (but not literally)
The treasure is buried next to the:
ββββββββββββββββββββββ
β JUST KIDDING! β
β There is no β
β treasure here. β
β Go outside and β
β enjoy the sun! βοΈ β
ββββββββββββββββββββββ
P.S. The real treasure was the bugs we fixed along the way.
EOF
# Fake secret code
cat > "$DECOY_DIR/secret_code.py" << 'EOF'
#!/usr/bin/env python3
# ULTRA SECRET HACKING TOOL
# DO NOT RUN THIS OR THE FBI WILL KNOCK ON YOUR DOOR
import sys
import time
def hack_the_planet():
print("π Initiating hack sequence...")
time.sleep(2)
print("π Bypassing mainframe...")
time.sleep(2)
print("πΎ Downloading the internet...")
time.sleep(2)
print("π Success!")
print("")
print("Just kidding! This script does nothing.")
print("But you should probably learn to code properly")
print("instead of trying to 'hack' things. π")
print("")
print("Here, have a cookie emoji: πͺ")
if __name__ == "__main__":
hack_the_planet()
EOF
chmod +x "$DECOY_DIR/secret_code.py"
# Create a README trap
cat > "$DECOY_DIR/README.txt" << 'EOF'
π¨ CONGRATULATIONS! π¨
You've found the "secret" directory!
Unfortunately for you, everything in here is completely fake
and designed to waste the time of snoops like yourself.
The real secrets are:
1. There are no secrets
2. Be kind to others
3. Always comment your code
4. Cookies are delicious
Now close this directory and go do something productive!
Or run the secret_code.py if you want a laugh. π
EOF
echo "β
Created: $DECOY_DIR/PASSWORDS.txt"
echo "β
Created: $DECOY_DIR/MASTER_PLAN.md"
echo "β
Created: $DECOY_DIR/treasure_map.txt"
echo "β
Created: $DECOY_DIR/secret_code.py"
echo "β
Created: $DECOY_DIR/README.txt"
echo ""
echo "π Decoy files deployed! Any snoops will be thoroughly confused."
echo "π‘ The directory is: $DECOY_DIR"