-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoochie 3.19R.bat
607 lines (601 loc) · 19.2 KB
/
coochie 3.19R.bat
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
rem The Change Log!!
rem Added:
rem added more test questions (2)
rem added askexit to test
rem added a check for touchscreen, if you ran the script with admin. (#10)
rem added more separation between certain features and stuff
rem added a note to the option of touchscreen (options)
rem added a secrect count
rem added a basic calulator
rem added more features to system info (#16)
rem added askexit into more places
rem Removed:
rem removed 3 lines that tell you have to run the script with admin, as it is no longer needed.
rem removed /b from the exit in askexit because what good does it do?
rem Improved/Changed:
rem changed "select a NUMBER! " > "select a number: " (#17)
rem changed touchscreen from immediantly exiting on user clicking a key, to redirecting to askexit
rem improved system info
rem renamed "computer info" to "system info" (options)
rem fixed a grammar error in askexit
rem Bug Fixes
rem nothing
rem Notes
rem the tree "hacking" randomly freezes for a second sometimes, this is normal.(#9)
rem got anything to suggest? select #17 in the script for my socials!
rem all secrects need internet.
rem Secrect Count: 12
rem Dev Notes (to myself)
rem nothing
rem enjoy the script!
@echo off
:checkuac
echo checking for admin perms..
net session >nul 2>&1
if %errorLevel% neq 0 (
set uac=false
) else (
set uac=true
)
:urmomshouse
cls
echo 0. exit
echo 1. kid*
echo 2. random number 1-65000
echo 3. clean the files..
echo 4. kill certain process
echo 5. open my website*
echo 6. dvd screensaver*
echo 7. my repo version selector*
echo 8. explode*
echo 9. do some "haking"
echo 10. test
echo 11. clones of your mother*
echo 12. some internet advice*
echo 13. joke of the day*
echo 14. fun fact*
echo 15. le troubleshooting console
echo 16. system info
echo 17. socials*
echo 18. touchscreen on/off (needs admin!)
echo 19. basic calculator
echo * means the feature needs internet!
set /p wow="choose your fate: "
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
if "%wow%"=="0" (
echo bye
) else if "%wow%"=="1" (
cls
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/child.png' -OutFile '%temp%\child.png'"
echo we open file now
start %temp%\child.png
timeout /t 5 >nul
del "%temp%\child.png"
) else if "%wow%"=="2" (
cls
set /a random_number=%random% * 65000 / 32768 + 1
echo your random number is: %random%
goto askexit
) else if "%wow%"=="3" (
cls
echo it is recommended to run this script as admin before doing this.
echo click any button to continue, or close out of the script..
pause >nul
taskkill /f /im ccleaner64.exe
taskkill /f /im ccleaner.exe
del /f /q "C:\Program Files (x86)\Microsoft\EdgeUpdate\*"
del /f /q "C:\Program Files (x86)\Microsoft\Temp\*"
del /f /q "C:\Users\chicken\AppData\Local\SquirrelTemp\*"
del /f /q "C:\Program Files (x86)\BraveSoftware\Update\*"
del /f /q "%temp%\*"
del /f /q "%localappdata%\Discord\Packages\SquirrelTemp\*"
del /f /q "C:\Windows\SystemTemp\*"
del /f /q "%localappdata%\SquirrelTemp\*"
del /f /q "C:\Windows\Temp\*"
del /f /q "C:\Windows\WinSxS\Temp\*"
del /f /q "%localappdata%\cache\*"
timeout /t 1 >nul
cls
echo you can close this window now.
start ccleaner.exe /AUTO
cls
echo you can close this window now.
cleanmgr /sagerun
cls
echo you can close this window now.
) else if "%wow%"=="4" (
cls
goto pid
) else if "%wow%"=="5" (
echo great choice!
start http://chicken.bulletinbay.com
) else if "%wow%"=="6" (
cls
echo This screensaver uses PYTHON! Make sure you have it installed!
echo The screensaver is located in your user folder.
if exist "%homepath%\dvd-screensaver-x86.scr" (
echo file already exists my friend!
) else (
echo we download cuz it doesnt already exist womp womp
echo this download will take about 15 seconds
powershell -Command "Invoke-WebRequest -Uri 'https://github.com/lemonyte/dvd-screensaver/releases/download/v1.0.1/dvd-screensaver-x86.scr' -OutFile '"%homepath%\dvd-screensaver-x86.scr'"
)
echo starting the screen saver..
"%homepath%\dvd-screensaver-x86.scr" /S
) else if "%wow%"=="7" (
start http://chicken.bulletinbay.com/repo.html
) else if "%wow%"=="8" (
cls
echo pluh
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/catexplode.gif' -OutFile '%temp%\catexplode.gif'"
start %temp%\catexplode.gif
cls
timeout /t 5 >nul
del "%temp%\catexplode.gif"
shutdown -h
) else if "%wow%"=="9" (
color 2
cd C:\
cls
echo starting hack...
timeout /t 2 >nul
tree
echo EXIT: 1
pause >nul
echo what a fucking joke you are!!
) else if "%wow%"=="10" (
cls
echo test incoming!
goto test
) else if "%wow%"=="11" (
cls
echo get prepared to see many clones of your mother!
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/mom.gif' -OutFile '%temp%\mom.gif'"
start %temp%\mom.gif
cls
timeout /t 5 >nul
del "%temp%\mom.gif"
) else if "%wow%"=="12" (
cls
echo getting your life advice
powershell -Command "Invoke-WebRequest -Uri 'https://api.adviceslip.com/advice' -OutFile '%temp%\fortune.json'"
powershell -Command "(Get-Content '%temp%\fortune.json' | ConvertFrom-Json).slip.advice"
del "%temp%\fortune.json"
echo click any key to exit..
pause >nul
) else if "%wow%"=="13" (
cls
echo heres a joke for you!!11!
powershell -Command "Invoke-WebRequest -Uri 'https://official-joke-api.appspot.com/random_joke' -OutFile '%temp%\joke.json'"
powershell -Command "(Get-Content '%temp%\joke.json' | ConvertFrom-Json).setup"
timeout /t 1 >nul
powershell -Command "(Get-Content '%temp%\joke.json' | ConvertFrom-Json).punchline"
del "%temp%\joke.json"
echo click any key to exit..
pause >nul
) else if "%wow%"=="14" (
cls
echo getting a fun fact
powershell -Command "Invoke-WebRequest -Uri 'https://uselessfacts.jsph.pl/api/v2/facts/random?language=en' -OutFile '%temp%\fact.json'"
powershell -Command "(Get-Content '%temp%\fact.json' | ConvertFrom-Json).text"
del "%temp%\fact.json"
echo click any key to exit..
pause >nul
) else if "%wow%"=="15" (
cls
echo this is literally just a command prompt window
echo it will not close even on error, which is why i called it "le troubleshooting console"
echo it only closes when killed, or closed by user.
cmd /k
) else if "%wow%"=="16" (
cls
echo system information:
echo =========================
echo computer name: %computername%
echo user folder: %homedrive%%homepath%
echo processor architecture: %processor_architecture%
echo system drive: %homedrive%
echo number of processor cores: %number_of_processors%
echo os version: %os%
echo username: %username%
echo local date/time: %date% %time%
echo =========================
timeout /t 1 >nul
echo click any key to continue
pause >nul
goto askexit
) else if "%wow%"=="17" (
cls
goto socials
) else if "%wow%"=="18" (
cls
goto tmenu
) else if "%wow%"=="19" (
goto calculator
)
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: you are now in terretory of the secrects! :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
else if "%wow%"=="e" (
cls
echo ooh.. secrect??
timeout /t 5 >nul
cls
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/strawberryfull.jpg' -OutFile '%temp%\chicken.jpg'"
echo we open file now
start %temp%\chicken.jpg
cls
echo do you like my chicken????
timeout /t 5 >nul
del "%temp%\chicken.jpg"
) else if "%wow%"=="horn" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/horn.mp3' -OutFile '%temp%\horn.mp3'"
timeout /t 1 >nul
start wmplayer "%temp%\horn.mp3" /min
timeout /t 3 >nul
taskkill /f /im wmplayer.exe
cls
del "%temp%\horn.mp3"
) else if "%wow%"=="sigma" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/sigma.jpg' -OutFile '%temp%\sigma.jpg'"
start %temp%\sigma.jpg
cls
timeout /t 5 >nul
del "%temp%\sigma.jpg"
) else if "%wow%"==" " (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/skibity.jpg' -OutFile '%temp%\skibity.jpg'"
start %temp%\skibity.jpg
cls
timeout /t 5 >nul
del "%temp%\skibity.jpg"
) else if "%wow%"=="crack" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/cracker.jpg' -OutFile '%temp%\cracker.jpg'"
start %temp%\cracker.jpg
cls
timeout /t 5 >nul
del "%temp%\cracker.jpg"
) else if "%wow%"=="fart" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/fart.gif' -OutFile '%temp%\fart.gif'"
start %temp%\fart.gif
cls
timeout /t 5 >nul
del "%temp%\fart.gif"
) else if "%wow%"=="" (
cls
echo wow! a secrect!
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/code.jpg' -OutFile '%temp%\code.jpg'"
start %temp%\code.jpg
cls
timeout /t 5 >nul
del "%temp%\code.jpg"
) else if "%wow%"=="crime" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/crime.jpg' -OutFile '%temp%\crime.jpg'"
start %temp%\crime.jpg
cls
timeout /t 5 >nul
del "%temp%\crime.jpg"
) else if "%wow%"==":3" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/wtf.gif' -OutFile '%temp%\wtf.png'"
start %temp%\wtf.png
cls
timeout /t 5 >nul
del "%temp%\wtf.png"
) else if "%wow%"=="SHUT UP YOU'RE :clover:" (
cls
echo ooh.. secrect??
echo you shouldn't even know this exists without looking at the code but its ok 🥰 we love you my friend even though your gay
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/SHUTUP.gif' -OutFile '%temp%\SHUTUP.gif'"
start %temp%\SHUTUP.gif
cls
timeout /t 5 >nul
del "%temp%\SHUTUP.gif"
) else if "%wow%"=="table" (
cls
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/table.gif' -OutFile '%temp%\table.gif'"
start %temp%\table.gif
cls
timeout /t 5 >nul
del "%temp%\table.gif"
) else if "%wow%"=="gas" (
cls
color 6
echo ooh.. secrect??
timeout /t 1 >nul
powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/gas.gif' -OutFile '%temp%\gas.gif'"
start %temp%\gas.gif
cls
timeout /t 5 >nul
del "%temp%\gas.gif"
) else (
cls
echo ur fate is invalid hahahahahhaheiruydgohoiugusdf
echo i will send you back to the main menu!!
timeout /t 3 >nul
cls
goto urmomshouse
)
exit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:: you are now in terretory of the other complicated features! :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:pid
echo this will also kill any subprocesses.
set /p proc="input a pid or process name to kill: "
taskkill /f /im %proc% >nul
taskkill /f /pid %proc% >nul
exit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:test
echo ready?
timeout /t 1 >nul
echo (click any key to continue)..
pause >nul
cls
echo 1. saturn
echo 2. uranus
echo 3. moon
echo 4. earth
set /p planet="which planet has the most moons? "
if "%planet%"=="1" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%planet%"=="saturn" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else (
cls
echo wrong!!!!
pause
exit
)
echo 1. seagull
echo 2. dog
echo 3. chicken
echo 4. cat
set /p pluh="what animal do i like? "
if "%pluh%"=="3" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%pluh%"=="chicken" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else (
cls
echo wrong!!!!
echo click anything to exit
pause >nul
exit
)
echo 1. hitler
echo 2. trump
echo 3. ice cream biden
echo 4. all of the above
echo 5. none
set /p politics="what poletition do i like? "
if "%politics%"=="1" (
cls
echo what is your problem?
echo click anything to exit
pause >nul
exit
) else if "%politics%"=="5" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%politics%"=="none" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else (
cls
echo wrong!!!!
echo click anything to exit
pause >nul
exit
)
echo 1. heads
echo 2. tails
set /p headstails="heads.. or tails? "
if "%headstails%"=="2" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%headstails%"=="tails" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else (
echo wrong!!!!
echo click anything to exit
pause >nul
exit
)
echo nothing is impossible
echo 1. true
echo 2. false
set /p possible="true or false? "
if "%possible%"=="2" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%possible%"=="f" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else if "%possible%"=="false" (
cls
echo your correct!!!!
timeout /t 3 >nul
cls
) else (
echo wrong!!!!
echo click anything to exit
pause >nul
exit
)
cls
echo you passed!
echo great job!
echo theres more coming soon..
timeout /t 1 >nul
goto askexit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:socials
cls
echo these are *most* of my socials.
echo 0. exit
echo 1. discord
echo 2. telegram
echo 3. youtube
echo 4. twitter
echo 5. roblox
echo 6. minecraft
echo 7. my site
echo 8. go back to main menu
set /p s="select a number: "
if "%s%"=="0" (
echo ok
exit
) else if "%s%"=="1" (
start https://discord.com/users/841797623270342717
) else if "%s%"=="2" (
start https://t.me/ch1ck3mm
) else if "%s%"=="3" (
start https://youtube.com/@thyrandomchicken
) else if "%s%"=="2" (
start https://twitter.com/ch1ck3m
) else if "%s%"=="5" (
start https://roblox.com/users/1343740658/profile
) else if "%s%"=="6" (
start https://namemc.com/profile/ch1ck3m
) else if "%s%"=="7" (
start http://chicken.bulletinbay.com
) else if "%s%"=="8" (
cls
goto urmomshouse
) else (
echo invalid number.
echo click any key to continue back to the menu.
pause >nul
goto socials
)
exit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
setlocal EnableDelayedExpansion
:tmenu
cls
if "%uac%"=="false" (
echo you did not start the script as admin!
echo touchscreen features will be restricted until you start the script as admin.
goto askexit
) else if "%uac%"=="true" (
echo you have admin!
echo continuing..
timeout /t 1 >nul
cls
) else (
echo something happened.. not sure what!
goto askexit
)
echo this may or may not work for you, but for almost basically everybody it SHOULD work.
echo 0. exit
echo 1. enable touchscreen
echo 2. disable touchscreen
set /p touch="enter choice: "
if "%touch%"=="0" (
exit
) else if "%touch%"=="1" (
cls
echo enabling touchscreen..
powershell -Command "try { Get-PnpDevice -FriendlyName 'HID-compliant touch screen' | Enable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to enable touchscreen. did you run this script as admin?' } else { throw $_ } }"
powershell -Command "try { Get-PnpDevice -FriendlyName '*touchscreen*' | Enable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to enable touchscreen. did you run this script as admin?' } else { throw $_ } }"
powershell -Command "try { Get-PnpDevice -FriendlyName '*touch screen*' | Enable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to enable touchscreen. did you run this script as admin?' } else { throw $_ } }"
echo if you got no error, then touchscreen should be enabled!
timeout /t 1 >nul
goto askexit
) else if "%touch%"=="2" (
cls
echo disabling touchscreen..
powershell -Command "try { Get-PnpDevice -FriendlyName 'HID-compliant touch screen' | Disable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to disable touchscreen. did you run this script as admin?' } else { throw $_ } }"
powershell -Command "try { Get-PnpDevice -FriendlyName '*touchscreen*' | Disable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to disable touchscreen. did you run this script as admin?' } else { throw $_ } }"
powershell -Command "try { Get-PnpDevice -FriendlyName '*touch screen*' | Disable-PnpDevice -Confirm:$false } catch { if ($_.Exception.HResult -eq 0x80041001) { Write-Host 'failed to disable touchscreen. did you run this script as admin?' } else { throw $_ } }"
echo if you got no error, then touchscreen should be disabled!
timeout /t 1 >nul
goto askexit
) else (
echo invalid choice
echo click anywhere to go back
pause >nul
goto tmenu
)
endlocal
exit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:calculator
cls
echo basic calculator:
set /p expr="enter expression: "
set /a result=%expr%
echo result: %result%
echo click any key to continue
pause >nul
goto askexit
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
:askexit
set /p askexit="would you like to go back to the main menu? (y/n): "
if "%askexit%"=="y" (
goto urmomshouse
) else (
exit
)
exit
rem end of script
rem #################### this is for creating secrects (its the secrect template!!1!) ####################
rem cls
rem echo ooh.. secrect??
rem timeout /t 1 >nul
rem powershell -Command "Invoke-WebRequest -Uri 'http://chicken.bulletinbay.com/data/' -OutFile '%temp%\'"
rem start %temp%\
rem cls
rem timeout /t 5 >nul
rem del "%temp%\"
rem ######################################################################################################