scripts
4 posters
scripts
post shell scripts (not code!! like C and perl and whatever) - whether its in bourne shell or windows cmd doesnt matter (but specify it!!)
posted this on hardware issues; download every avatar a person has uploaded on OTTD. its for bash but i'm sure it works on sh, ksh, ash, zsh, et. al.
posted this on hardware issues; download every avatar a person has uploaded on OTTD. its for bash but i'm sure it works on sh, ksh, ash, zsh, et. al.
- Code:
export itsautomated=0
while true; do
export itsautomated=`expr $itsautomated + 1`
if [ $itsautomated == 100 ]; then exit; else wget http://r29.imgfast.net/users/3417/17/08/55/avatars/imgay-$itsautomated.png; fi
done
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
cmd hacker program
- Code:
@echo off
color 0c
title Sethis Hacker
echo Now Hacking Your Pc.... Muaha
echo Warning A Steady Stream Of Viruses HAs Been Detected
dir
dir
dir
echo Pc Is Attempting The Repair
echo Please Wait
ping localhost -t 5
echo Your Pc Is About To Be Terminated Have A Good Day
ping localhost -t 5
clr
echo YOU JUST GOT FOOLED BY SETHS HACKER PROGRAM!!!!!
echo YOU JUST GOT FOOLED BY SEHTS HACKER PROGRAM!!!!!
echo Please FWD This To All Your Friends
LEADER OF THE FREE WORLD- UNSTOPPABLE
- Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 15
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420
Re: scripts
that's not the exact source since i can't find it but i made something like that circa 05
LEADER OF THE FREE WORLD- UNSTOPPABLE
- Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 15
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420
Re: scripts
also powershell
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
niceozzie freedom wrote:that's not the exact source since i can't find it but i made something like that circa 05
i made a batch script a couple years ago that flashes every color you can change cmd to and duplicate its self in forkbomb-fashion
i stuck it in some faggot's startup folder because he left his account logged on when he went to the bathroom and he was PISSED
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
he couldnt use his account for two weeks because the local sysadmin was in the hospital or some shitamsogaydurr wrote:niceozzie freedom wrote:that's not the exact source since i can't find it but i made something like that circa 05
i made a batch script a couple years ago that flashes every color you can change cmd to and duplicate its self in forkbomb-fashion
i stuck it in some faggot's startup folder because he left his account logged on when he went to the bathroom and he was PISSED
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
randomly generated passwords, can just be ran from the command line:
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 28 | head -n 10 | cat > passwords
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 28 | head -n 10 | cat > passwords
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
they look like thisamsogaydurr wrote:randomly generated passwords, can just be ran from the command line:
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 28 | head -n 10 | cat > passwords
udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
that script can do a lot of shit with some modification, it's excellent for all things cryptography
for example, if you want a few one time pads:
cat /dev/urandom | tr -dc '0-9' | fold -w 28 | sed -e "s/.\{4\}/&\ /g" | head -n 10
change /dev/urandom to /dev/random for an even more secure approach (urandom is seeded while random uses your hardware entropy pool, you shouldnt overuse it though since you have a limited amount)
for example, if you want a few one time pads:
cat /dev/urandom | tr -dc '0-9' | fold -w 28 | sed -e "s/.\{4\}/&\ /g" | head -n 10
change /dev/urandom to /dev/random for an even more secure approach (urandom is seeded while random uses your hardware entropy pool, you shouldnt overuse it though since you have a limited amount)
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
oh those look like my passwordsamsogaydurr wrote:they look like thisamsogaydurr wrote:randomly generated passwords, can just be ran from the command line:
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 28 | head -n 10 | cat > passwords
udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
LEADER OF THE FREE WORLD- UNSTOPPABLE
- Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 15
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420
Re: scripts
hardcoreozzie freedom wrote:oh those look like my passwordsamsogaydurr wrote:they look like thisamsogaydurr wrote:randomly generated passwords, can just be ran from the command line:
cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 28 | head -n 10 | cat > passwords
udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
if someone steals my password they'll think it's an md5/sha hash and get frustrated when they can't crack it any further
security through idiocy
security through idiocy
LEADER OF THE FREE WORLD- UNSTOPPABLE
- Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 15
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420
Re: scripts
take screenshots in plan 9 from bell labs:
topng < /dev/screen > screenshot.png
i want to use it some time, the tools and resources available look interesting as fuck
taking screenshots in lunix basically requires some kind of software like scrot when you can process it in the userspace with plan 9
topng < /dev/screen > screenshot.png
i want to use it some time, the tools and resources available look interesting as fuck
taking screenshots in lunix basically requires some kind of software like scrot when you can process it in the userspace with plan 9
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
afterwards run:amschrodinger wrote:post shell scripts (not code!! like C and perl and whatever) - whether its in bourne shell or windows cmd doesnt matter (but specify it!!)
posted this on hardware issues; download every avatar a person has uploaded on OTTD. its for bash but i'm sure it works on sh, ksh, ash, zsh, et. al.where imgay is, put the user's ID (ammy is 1, mega is 2, etc. you can find it in the URL when you're on that user's profile)
- Code:
export itsautomated=0
while true; do
export itsautomated=`expr $itsautomated + 1`
if [ $itsautomated == 100 ]; then exit; else wget http://r29.imgfast.net/users/3417/17/08/55/avatars/imgay-$itsautomated.png; fi
done
du -ah | grep 4.0K | rm `cut -f 2`
to remove "blank" images (e.g empty slots where you just get the "You can return to the index..." message)
amsoautisticd8er- Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27
Re: scripts
Post some.amsoautisticd8er wrote:post shell scripts (not code!! like C and perl and whatever) - whether its in bourne shell or windows cmd doesnt matter (but specify it!!)
posted this on hardware issues; download every avatar a person has uploaded on OTTD. its for bash but i'm sure it works on sh, ksh, ash, zsh, et. al.where imgay is, put the user's ID (ammy is 1, mega is 2, etc. you can find it in the URL when you're on that user's profile)
- Code:
export itsautomated=0
while true; do
export itsautomated=`expr $itsautomated + 1`
if [ $itsautomated == 100 ]; then exit; else wget http://r29.imgfast.net/users/3417/17/08/55/avatars/imgay-$itsautomated.png; fi
done
Magician- MAGGY THE MAGICIAN
- Posts : 3436
money : 4166
bitches : 8
Join date : 2013-03-08
Location : Roman Catholicism
Humor : Mature humour for mature people such as myself
Re: scripts
im using windows right now and writing batch scripts is like bashing your head against a wall and then watching paint dry while you die of a concussionMundane Magician wrote:Post some.amsoautisticd8er wrote:post shell scripts (not code!! like C and perl and whatever) - whether its in bourne shell or windows cmd doesnt matter (but specify it!!)
posted this on hardware issues; download every avatar a person has uploaded on OTTD. its for bash but i'm sure it works on sh, ksh, ash, zsh, et. al.where imgay is, put the user's ID (ammy is 1, mega is 2, etc. you can find it in the URL when you're on that user's profile)
- Code:
export itsautomated=0
while true; do
export itsautomated=`expr $itsautomated + 1`
if [ $itsautomated == 100 ]; then exit; else wget http://r29.imgfast.net/users/3417/17/08/55/avatars/imgay-$itsautomated.png; fi
done
nerd nuker- Posts : 858
money : 918
bitches : 5
Join date : 2013-09-22
Age : 27
Permissions in this forum:
You cannot reply to topics in this forum