OTTHUNDERDOME I : THE THUNDERVAULT - HOME OF THE GOODS
Would you like to react to this message? Create an account in a few clicks or log in to continue.

scripts

4 posters

Go down

scripts Empty scripts

Post by amsoautisticd8er Sun Aug 11, 2013 3:06 pm

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.

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
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)
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by LEADER OF THE FREE WORLD Sun Aug 11, 2013 3:17 pm

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
LEADER OF THE FREE WORLD
UNSTOPPABLE

Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 14
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420

Back to top Go down

scripts Empty Re: scripts

Post by LEADER OF THE FREE WORLD Sun Aug 11, 2013 3:18 pm

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
LEADER OF THE FREE WORLD
UNSTOPPABLE

Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 14
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Sun Aug 11, 2013 3:19 pm

also powershell
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Sun Aug 11, 2013 3:20 pm

ozzie freedom wrote:that's not the exact source since i can't find it but i made something like that circa 05
nice

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
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Sun Aug 11, 2013 8:27 pm

amsogaydurr wrote:
ozzie freedom wrote:that's not the exact source since i can't find it but i made something like that circa 05
nice

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
he couldnt use his account for two weeks because the local sysadmin was in the hospital or some shit
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Mon Aug 12, 2013 12:50 am

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
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Mon Aug 12, 2013 12:53 am

amsogaydurr 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
they look like this

udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Mon Aug 12, 2013 1:07 am

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)
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by LEADER OF THE FREE WORLD Mon Aug 12, 2013 6:25 am

amsogaydurr wrote:
amsogaydurr 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
they look like this

udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
oh those look like my passwords
LEADER OF THE FREE WORLD
LEADER OF THE FREE WORLD
UNSTOPPABLE

Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 14
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Tue Aug 13, 2013 8:22 pm

ozzie freedom wrote:
amsogaydurr wrote:
amsogaydurr 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
they look like this

udLilEMC7kvRHE5OZohFI6Rru1L2
0jwQEpts8QqoUBuVLbmUqcE2AWqf
aIfFfJbkFq5SyfJHu0Sk0kU27W0E
tJbUWzKxiXhVIQEX6V1QmknanEvC
uysTgUduQ4ktv5EbfqDoPFSixGX6
LDP8Q8h4dj3ITjR3h7nqnVzxaAcw
IY04l6i9YUkTPNLcSdwgLQHOV3KT
Pw9qKXilOor26MzViOLh2X6R8wGj
XbtL8RaZKcMlRYVHSG3GzhxQ1CKF
NWuCe6cdIAEbphZfwigDmNwbcxOe
oh those look like my passwords
hardcore
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by LEADER OF THE FREE WORLD Tue Aug 13, 2013 8:50 pm

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
LEADER OF THE FREE WORLD
LEADER OF THE FREE WORLD
UNSTOPPABLE

Posts : 21233
money : 2147483634
bitches : -828
Join date : 2013-02-25
Age : 14
Location : worlds most dangerous hacker
Humor : bench 420 squat 420 deadlift 420

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Wed Aug 14, 2013 5:25 pm

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
amsoautisticd8er
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by amsoautisticd8er Sun Aug 18, 2013 10:03 pm

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.

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
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)
afterwards run:

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
amsoautisticd8er

Posts : 3153
money : 3394
bitches : 24
Join date : 2013-08-06
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by Magician Mon Sep 23, 2013 5:13 pm

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.

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
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)
Post some.
Magician
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

Back to top Go down

scripts Empty Re: scripts

Post by nerd nuker Mon Sep 23, 2013 5:33 pm

Mundane Magician wrote:
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.

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
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)
Post some.
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 concussion
nerd nuker
nerd nuker

Posts : 858
money : 918
bitches : 5
Join date : 2013-09-22
Age : 27

Back to top Go down

scripts Empty Re: scripts

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum