Skip to content

Commit c43c38e

Browse files
committed
commiting initial scripts
1 parent ed212b2 commit c43c38e

13 files changed

+471
-0
lines changed

di.fm

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/sh
2+
TYPE=$1
3+
if [ -z "${TYPE}" ]; then
4+
curl -s www.di.fm | grep pls | cut -d '"' -f 2| cut -d / -f 5 | sed -e s,.pls,, |sort | uniq
5+
else
6+
URL=http://listen.di.fm/public3/${TYPE}.pls
7+
STREAM=$(curl -s ${URL} | grep File1 |cut -d = -f 2)
8+
mplayer ${STREAM}
9+
fi

hexebcdic2ascii

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
echo -n -e $(sed 's/../\\x&/g') | iconv -f EBCDICUS

jad

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
wine ~/download/jad.exe $*

jadall

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh
2+
find . -type d -exec sh -c 'cd {} && jad -s java -o *.class' \;

kopete-offline

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
export DISPLAY=:0.0
3+
qdbus org.kde.kopete /Kopete org.kde.Kopete.setOnlineStatus Offline
4+
kdialog --title "Kopete" --passivepopup "Es la hora, Kopete parado"

mail-expect

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
#!/usr/bin/expect
2+
set mailserver [lrange $argv 0 0]
3+
set from [lrange $argv 1 1]
4+
set to [lrange $argv 2 2]
5+
6+
spawn telnet $mailserver 25
7+
expect "failed" {
8+
send_user "$mailserver: connect failed\n"
9+
exit
10+
} "2?? *" {
11+
} "4?? *" {
12+
exit
13+
} "refused" {
14+
send_user "$mailserver: connect refused\n"
15+
exit
16+
} "closed" {
17+
send_user "$mailserver: connect closed\n"
18+
exit
19+
} timeout {
20+
send_user "$mailserver: connect to port 25 timeout\n"
21+
exit
22+
}
23+
send "HELO foo.com\r"
24+
expect "2?? *" {
25+
} "5?? *" {
26+
exit
27+
} "4?? *" {
28+
exit
29+
}
30+
send "MAIL FROM: <$from>\r"
31+
expect "2?? *" {
32+
} "5?? *" {
33+
exit
34+
} "4?? *" {
35+
exit
36+
}
37+
send "RCPT TO: <$to>\r"
38+
expect "2?? *" {
39+
} "5?? *" {
40+
exit
41+
} "4?? *" {
42+
exit
43+
}
44+
send "DATA\r"
45+
expect "3?? *" {
46+
} "5?? *" {
47+
exit
48+
} "4?? *" {
49+
exit
50+
}
51+
send "From: $from\r"
52+
send "To: $to\r"
53+
send "Subject: test\r"
54+
send "This is a test message\r"
55+
send ".\r"
56+
expect "2?? *" {
57+
} "5?? *" {
58+
exit
59+
} "4?? *" {
60+
exit
61+
}
62+
send "QUIT\r"
63+
exit
64+

nmap2csv

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
#! /usr/bin/perl -w
2+
use strict;
3+
4+
my @fieldNames = (
5+
"Host:",
6+
"Ports:",
7+
"OS:",
8+
"Seq Index:",
9+
"IPID Seq:"
10+
);
11+
12+
my $split = join "|", @fieldNames;
13+
$split = "($split)";
14+
15+
while( <> ){
16+
17+
foreach my $fieldName ( @fieldNames ){
18+
if( $_ =~ m/$fieldName/ ){
19+
my ( $pre, $post ) = split $fieldName, $_ ;
20+
my ( $fieldVal, @junk ) = split /$split/, $post;
21+
22+
if( $fieldName eq "Host:" ){
23+
$fieldVal =~ m/([0-9]+\.[0-9]+\.[0-9]+\.[0-9]+)\s+\((.*)\)/;
24+
my $dottedDecIp = $1;
25+
my $ipName = $2;
26+
print "\"$dottedDecIp\",\"$ipName\",";
27+
}
28+
elsif( $fieldName eq "OS:" ){
29+
my $os = $fieldVal;
30+
$os =~ s/^\s+//;
31+
$os =~ s/\s+$//;
32+
print "\"$os\",";
33+
}
34+
elsif( $fieldName eq "Ports:" ){
35+
my( @ports ) = $fieldVal =~ m/\s+([0-9]+)\/open/g;
36+
print "\"";
37+
foreach my $port ( @ports ){
38+
print "$port,";
39+
}
40+
print "\"";
41+
}
42+
}
43+
}
44+
print "\n";
45+
}

0 commit comments

Comments
 (0)