Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
libx11-protocol-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
anim.pl
2.77
KB
-rw-r--r--
full_test.pl.gz
5.44
KB
-rw-r--r--
long-run.pl
3.09
KB
-rw-r--r--
random-win.pl
1.08
KB
-rw-r--r--
render-clock.pl.gz
3.33
KB
-rw-r--r--
render-test.pl.gz
1.92
KB
-rw-r--r--
teletype.pl
2.87
KB
-rw-r--r--
widgets1.pl.gz
6.9
KB
-rw-r--r--
widgets2.pl.gz
7.6
KB
-rw-r--r--
widgets3.pl.gz
6.68
KB
-rw-r--r--
widgets.c.gz
7.69
KB
-rw-r--r--
wintree.pl
2.3
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : random-win.pl
#!/usr/bin/perl # Overwrite a bunch of randomly chosen windows on the screen with # random-colored rectangles. You might want to learn about the # "xrefresh" program before trying this one. # Demonstrates the use of "robust_req" use X11::Protocol; $X = X11::Protocol->new; my $gc = $X->new_rsrc; $X->req('CreateGC', $gc, $X->root); for (1 .. 2500) { my $client = rand(50); my $client_id = rand(200); my $id = $client << 21 | $client_id; printf "XID %x ", $id; my($result,) = $X->robust_req('GetGeometry', $id); my %geom; if (ref $result) { print "exists\n"; %geom = @$result; } else { print "does not exist\n"; next; } # Make sure we've got a Window rather than a Pixmap, since overwriting # Pixmaps is more permanent and therefore less amusing. next unless ref $X->robust_req('GetWindowAttributes', $id); $X->req('ChangeGC', $gc, 'foreground' => rand(2**32)); my($result,) = $X->robust_req('PolyFillRectangle', $id, $gc, [5, 5, $geom{width}-10, $geom{height}-10]); if (not ref $result) { print "Ignoring $result error\n"; } }
Close