This repository was archived by the owner on Dec 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguest_wifi.pl
171 lines (120 loc) · 3.73 KB
/
guest_wifi.pl
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
#!/usr/bin/perl
use v5.30;
use warnings;
use diagnostics;
=pod
=head1 DESCRIPTION
Extract weekly "nyuguest" WiFi credentials.
=head2 NAME
guest_wifi.pl v.1
=head2 SYNOPSIS
Extract weekly "nyuguest" WiFi credentials using Perl.
Requires access to NYU-NET--campus wide-area network (WAN)--and a valid NetID.
Credentials are valid for one(1) week from 12:00:00 EST Monday.
=head2 SAMPLE OUTPUT
Current time: Sun 09 Jan 2022 04:39:20 PM EST
Enter your NetID: lilcuckoo0211
Enter your password:
Scraping HTML from NYUROAM page...
Parsing region of interest (ROI) from HTML...
Guest ID Password
-------- --------
guest160 giddilot
#### AUTHOR
=head2 AUTHOR
<M. Krinitz> <mjk235 [at] nyu [dot] edu>
=head2 LICENSE
Copyright <2022> <M. Krinitz>
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies
or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
=cut
use LWP::Simple qw($ua get);
$ua->timeout(5);
use Term::ReadKey;
use LWP::UserAgent;
use Mozilla::CA;
use HTML::TableExtract;
our $date_today = localtime();
our $url_0 = "https://nyuroam-guest.nyu.edu";
our $url_1 = "https://nyuroam-guest.nyu.edu/cgi-bin/index.pl";
my $netid;
my $password;
my $ua = LWP::UserAgent->new();
my $req = new HTTP::Request(GET => $url_1);
my @HTML;
our $HTML;
my $headers = ['Guest ID', 'Password'];
my $table_extract = HTML::TableExtract->new(headers => $headers);
our $credentials;
# URL status check
sub URL_status_check {
disable diagnostics;
my $html = get $url_0 || die "Request timed out. Are you connected to NYU-NET? Exiting.\n";
}
# NetID prompt
sub netid_prompt {
while (1) {
print "Enter your NetID: ";
chomp($netid = <STDIN>);
last if $netid ne '';
print "No input detected!\n";
}
return $netid;
}
# Password prompt
sub password_prompt {
while (1) {
print "Enter your password: \n";
Term::ReadKey::ReadMode('noecho');
chomp ($password = Term::ReadKey::ReadLine(0));
Term::ReadKey::ReadMode('restore');
last if $password ne '';
print "No input detected!\n";
}
return $password;
}
# Scrape region of interest from HTML
sub scrape_HTML {
print "Scraping HTML from NYUROAM page... \n";
$req->authorization_basic($netid, $password);
return $HTML = $ua->request($req)->content();
}
# Parse region of interest from scraped HTML
sub parse_table {
print "Parsing region of interest (ROI) from HTML... \n";
$table_extract->parse($HTML);
my ($table) = $table_extract->tables;
for my $row ($table->rows) {
return our $credentials = join(" ", @$row);
}
}
# Print credentials
sub print_credentials {
print 'Guest ID',' ','Password', "\n";
print '--------',' ','--------', "\n";
print $credentials, "\n";
}
# Main
sub main() {
print "Current time: $date_today\n";
URL_status_check();
netid_prompt();
password_prompt();
scrape_HTML();
parse_table();
print_credentials();
}
&main();