Compare cert salaries and plan your next career move
Netstudent wrote: Anyone know of any good ones? Free, preferably.
tech-airman wrote: Netstudent wrote: Anyone know of any good ones? Free, preferably. Netstudent, For HTTP traffic = Internet Explorer For FTP traffic = Internet Explorer For SMTP traffic = Outlook Express For POP3 traffic = Outlook Express For Telnet traffic = Command Prompt
#!/usr/bin/perl ## Generate traffic via repeatedly downloading files from FTP server use warnings; use strict; use Net::FTP; ## include the FTP module my $ftpServer = "192.168.1.23"; ## Edit the IP address to point to your FTP server my $directory = ""; ## LEAVE BLANK IF FILES ARE IN ROOT DIRECTORY, OTHERWISE CHANGE AS APPROPRIATE my $user = "anonymous"; my $pass = "a\@b.c"; ## if an @ is required, preced it with a backslash my $image = "picture.jpg"; #### my $video = "video.avi"; #### my $text = "text.txt"; #### Replace these with names of the files you wish to download my $exec = "porgram.exe"; #### my $iso = "largeiso.iso"; #### my @filenames = ($image, $video, $text, $exec, $iso); #### DO NOT EDIT THIS LINE my $filename; #### used as index in foreach loop my $ftpHandle; #### FTP object ### Connect to FTP server $ftpHandle = Net::FTP->new($ftpServer,Timeout=>240) or die ("could not connect to server"); ### login to server $ftpHandle->login("$user","$pass") or die ("Username or password rejected"); ### change directory $ftpHandle->cwd($directory) or die ("Unable to CD to directory- check permissions and spelling"); while (1) { ## Loop forever or until program is killed foreach $filename (@filenames) { $ftpHandle->get("$filename","/dev/null"); ##throw the file straight to the bit bucket } }
cambei@aslan ~/code $ perl -MNet::FTP -e 1
darkuser wrote: and for any other reason .... netcat the tcp/ip swiss army knife nc is your friend
How about spanning tree is that your friend also?
Compare salaries for top cybersecurity certifications. Free download for TechExams community.