[Perl] PasteBin Uploader

Bueno aca eh terminado un programa que los ayudara a publicar sus programas
en pastebin de una forma rapida y sin ganas xDDD

Entonces , este programa tiene dos opciones :

Publica solo un archivo
Publica todos los archivos en un directorio

Tambien detecta el tipo de extension para poder publicar el codigo en su respectivo tipo de codigo


  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#!usr/bin/perl
#Paste Bin Uploader (C) Doddy Hackman 2011
 
use LWP::UserAgent;
use HTTP::Request::Common;   
 
my $nave = LWP::UserAgent->new();
$nave->timeout(10);
$nave->agent("Mozilla/5.0 (Windows; U; Windows NT 5.1; nl; rv:1.8.1.12) Gecko/20080201Firefox/2.0.0.12");
 
menu();
 
sub menu {
 
clean();
header();
 
print "\n\n[Options]\n\n";
print "[1] : Upload a file\n";
print "[2] : Upload a directory\n";
print "[3] : Exit\n\n";
print "[Option] : ";
chomp(my $op = <stdin>);
 
if ($op eq 1) {
print "\n\n[File] : ";
chomp(my $file = <stdin>);
 
if (-f $file)  {
 
($name,$exta) =verfile($file);
 
my $ext = extensiones($exta);
 
if ($ext ne "Yet") {
 
 
$code = openfile($file);
 
$re = lleva($name,$code,$ext);
 
print "\n\n</li><li type="square"> File : $file\n";[/li][/list]
print "</li><li type="square"> Link : ".$re."\n";[/li][/list]
 
savefile("uploads_paste.txt","\n</li><li type="square"> File : $file");[/li][/list]
savefile("uploads_paste.txt","</li><li type="square"> Link : ".$re);[/li][/list]
 
}
 
 
} else {
print "\n\n[-] Error\n\n";
}
reload();
}
 
elsif ($op eq 2) {
 
print "\n\n[Directory] : ";
chomp(my $dir = <stdin>);
 
if (-d $dir) {
 
my @files = verdir($dir);
 
print "\n\n</li><li type="square"> Loading directory\n";[/li][/list]
 
for my $file(@files) {
 
chomp $file;
 
my ($name,$exta) =verfile($file);
 
my $ext = extensiones($exta);
 
if ($ext ne "Yet") {
 
my $code = openfile($dir."/".$file);
 
$re = lleva($name,$code,$ext);
 
print "\n\n</li><li type="square"> File : $file\n";[/li][/list]
print "</li><li type="square"> Link : ".$re."\n";[/li][/list]
 
savefile("uploads_paste.txt","\n</li><li type="square"> File : $file");[/li][/list]
savefile("uploads_paste.txt","</li><li type="square"> Link : ".$re);[/li][/list]
 
}
}
} else {
print "\n\n[-] Error\n\n";
}
 
reload();
}
 
elsif ($op eq 3) {
copyright();
<stdin>;
exit(1);
}
 
else {
menu();
}
}
 
sub copyright {
print "\n\n(C) Doddy Hackman 2011\n\n";
}
 
sub header {
 
print q(
 
 PPPP     AA     SSSSTTTTTTEEEE    BBBB   II NN   NN     UU  UU  PPPP 
 PP PP    AA    SS  S  TT  EE      BB BB  II NNN  NN     UU  UU  PP PP
 PP PP   AAAA   SS     TT  EE      BB BB  II NNNN NN     UU  UU  PP PP
 PPPP    A  A    SSS   TT  EEEE    BBBB   II NN N NN     UU  UU  PPPP 
 PP     AAAAAA     SS  TT  EE      BB BB  II NN NNNN     UU  UU  PP   
 PP     AA  AA  S  SS  TT  EE      BB BB  II NN  NNN     UUUUUU  PP   
 PP     AA  AA  SSSS   TT  EEEE    BBBB   II NN   NN      UUUU   PP   
 
 
);
 
}
 
sub clean {
system("cls");
}
 
 
 
sub verdir{
my @archivos;
opendir DIR,$_[0];
my @archivos = readdir DIR;
for (@archivos) {
if (-f $_[0]."/".$_) {
push(@files,$_)
}
}
return @files;
}
 
sub verfile {
if ($_[0]=~/(.*)\.(.*)/ig) {
return ($1,$2);
}
}
 
sub extensiones {
 
if ($_[0] =~/py/ig) {
$code  = "python";
}
elsif ($_[0] =~/pl/ig) {
$code = "perl";
}
elsif ($_[0] =~/rb/ig) {
$code = "ruby";
}
elsif ($_[0] =~/php/ig) {
$code = "php";
}
elsif ($_[0] =~/txt/ig) {
$code = "";
}
else {
$code = "Yet";
}
return $code;
}
 
sub reload {
print "\n\n[?] Enter for continue\n\n";
<stdin>;
menu();
}
 
 
 
sub savefile {
open (SAVE,">>logs/".$_[0]);
print SAVE $_[1]."\n";
close SAVE; 
}
 
sub openfile {
   
my $r;
 
open (FILE,$_[0]);
@wor = <FILE>;
close FILE;
for(@wor) {
$r.= $_;
}
return $r;
}
 
sub lleva {
return $nave->post('http://pastebin.com/api_public.php',{ paste_code => $_[1],paste_name=> $_[0],paste_format=>$_[2],paste_expire_date=>'N',paste_private=>"public",submit=>'submit'})->content;
} 
 
# ¿ The End ?

0 comentarios: sobre [Perl] PasteBin Uploader

Publicar un comentario para [Perl] PasteBin Uploader

:a   :b   :c   :d   :e   :f   :g   :h   :i   :j   :k   :l   :m   :n   :o   :p   :q   :r   :s   :t

Calculando Tiempo
Alienspace Theme © Copyright 2017 By Proxor
Mi Ping en TotalPing.com FeedBurner FeedBurner FeedBurner FeedBurner FeedBurner