Sponsored Content
Full Discussion: Script to Whitelist IPs
Top Forums UNIX for Beginners Questions & Answers Script to Whitelist IPs Post 303045554 by badr777 on Tuesday 31st of March 2020 01:25:23 PM
Old 03-31-2020
Script to Whitelist IPs

Hi, we have a manual task that we would like to automate. We have a web server with restricted access through a whitelist where we manually add IPs to it by following the steps below. We would like to create a script that once it's run it would prompt the user to enter the IP. One entered, the script takes care of the rest. Your help is very appreciated. Thank you

- ssh to server root@x.x.x.x
- Login as user by typing su - user
- vi /a/b/c/xx.conf (xx.conf is a file with a list of whitelisted IPs in the following format)
Code:
Allow from x.x.x.x
Allow from x.x.y.y
Allow from x.x.z.z
</ProxyMatch>

- Press ctrl E to Edit the file
- Press i to insert
- Add new IP to the file
- Press Escape then type :wq
- sudo su
- service httpd reload


Thank you

Moderator's Comments:
Mod Comment Please use code tags when posting data and code samples!

Last edited by Chubler_XL; 03-31-2020 at 09:24 PM..
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl Regular Expression - Whitelist

I am creating a whitelist for User Input Validation. Here is a code snippet that allows alphanumeric and forward slash (/). if ( $variable =~ /^*$/ ) #allow alphanumeric and fwd slash { $returnValue = 'good data'; } ... (3 Replies)
Discussion started by: mh53j_fe
3 Replies

2. Shell Programming and Scripting

Need help with Expect script for Cisco IPS Sensors, Expect sleep and quoting

This Expect script provides expect with a list of IP addresses to Cisco IPS sensors and commands to configure Cisco IPS sensors. The user, password, IP addresses, prompt regex, etc. have been anonymized. In general this script will log into the sensors and send commands successfully but there are... (1 Reply)
Discussion started by: genewolfe
1 Replies

3. Shell Programming and Scripting

Shell script to ping a range of IPs

Hi Can someone give me a shell script that can ping a range of IPs and return IPs which are not pingable. Range for example say 192.168.0.1 to 192.168.0.50 and whichever are not pingable then return the IP. Thanks for your help (3 Replies)
Discussion started by: tannu
3 Replies

4. Shell Programming and Scripting

Using "whitelist" from a file to remove entries

Dear all, what I need to do is extract an entries list from a file and remove some entries based on a white list present on other file, then output into result.txt file. Example: source.txt: 12345 text1 text2 text3 text4 123 text1 text2 text3 text4 678 text1 text2 text3 text4 987 text1... (8 Replies)
Discussion started by: Lord Spectre
8 Replies

5. Cybersecurity

Whitelist, goodware, database of hashes

I have found this excellent site: NSRL Downloads (sorry if it was already mentioned) there are Solaris and Linux files there too. its all in a text file, over 11Gb large. (0 Replies)
Discussion started by: orange47
0 Replies

6. Shell Programming and Scripting

Need help with a script to track IPs

Please tell me the script, if any user ping my pc so leave his ip, mac and other identity on my pc. (1 Reply)
Discussion started by: abhihot95
1 Replies

7. Shell Programming and Scripting

Help with shell script filtering IPs

Hello gentlemen. I would like to create a shell script (no perl or python please) to generate a list with those rules. Let's suppose I've this text file: a@A:soss(z)1.1.1.1 Opt!o:2.1.9.55 Azxk<ji>rC211.111.9.0-251.11.34.9 d=211.9.1.3 O.Oox 2.1.2.4-51.9.1.33... (6 Replies)
Discussion started by: accolito
6 Replies

8. Shell Programming and Scripting

Help with shell script - filter txt file full of ips

Hello again gentlemen. I would like to make a shell script to 'optimize' a plain text full of IPs. Let's suppose to have this text file: 1.192.63.253-1.192.63.253 1.0.234.46/32 1.1.128.0/17 1.116.0.0/14 1.177.1.157-1.177.1.157 1.23.22.19 1.192.61.0-1.192.61.99 8.6.6.6 I want to... (2 Replies)
Discussion started by: accolito
2 Replies

9. Solaris

IPS postinstall script

Hi guys, I'm creating custom package for deploying a bunch of public keys for some root servers we have. I have created script and it works but my problem is how to call this script when I want deploy package with puppet on server? Oracle documentation provided only example for first boot script... (0 Replies)
Discussion started by: solaris_user
0 Replies

10. Hardware

HP notebook PC wifi card whitelist problem

I have hp dv6 and dv7 notebook pcs on which I want to upgrade the wifi cards but when I install the new cards and boot them, the they won't even boot to the bios and they both give me the same error: "104-Unsupported wireless network device detected. System Halted. Remove device and restart." When... (1 Reply)
Discussion started by: milhan
1 Replies
Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormHandUser3Contributed Perl DocuCatalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormHandler(3pm)

NAME
Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormHandler - Catalyst Tutorial - Chapter 9: Advanced CRUD - FormHandler OVERVIEW
This is Chapter 9 of 10 for the Catalyst tutorial. Tutorial Overview 1. Introduction 2. Catalyst Basics 3. More Catalyst Basics 4. Basic CRUD 5. Authentication 6. Authorization 7. Debugging 8. Testing 9. 09_Advanced CRUD::09_FormHandler 10. Appendices DESCRIPTION
This portion of the tutorial explores HTML::FormHandler and how it can be used to manage forms, perform validation of form input, and save and restore data to or from the database. This was written using HTML::FormHandler version 0.28001. See Catalyst::Manual::Tutorial::09_AdvancedCRUD for additional form management options other than HTML::FormHandler. Install HTML::FormHandler Use the following command to install HTML::FormHandler::Model::DBIC directly from CPAN: sudo cpan HTML::FormHandler::Model::DBIC It will install HTML::FormHandler as a prerequisite. Also, add: requires 'HTML::FormHandler::Model::DBIC'; to your "Makefile.PL". HTML
::FormHandler FORM CREATION This section looks at how HTML::FormHandler can be used to add additional functionality to the manually created form from Chapter 4. Using FormHandler in your controllers FormHandler doesn't have a Catalyst base controller, because interfacing to a form is only a couple of lines of code. Create a Book Form Create the directory "lib/MyApp/Form". Create "lib/MyApp/Form/Book.pm": package MyApp::Form::Book; use HTML::FormHandler::Moose; extends 'HTML::FormHandler::Model::DBIC'; use namespace::autoclean; has '+item_class' => ( default =>'Books' ); has_field 'title'; has_field 'rating' => ( type => 'Integer' ); has_field 'authors' => ( type => 'Multiple', label_column => 'last_name' ); has_field 'submit' => ( type => 'Submit', value => 'Submit' ); __PACKAGE__->meta->make_immutable; 1; Add Action to Display and Save the Form At the top of the "lib/MyApp/Controller/Books.pm" add: use MyApp::Form::Book; Add the following methods: =head2 create Use HTML::FormHandler to create a new book =cut sub create : Chained('base') PathPart('create') Args(0) { my ($self, $c ) = @_; my $book = $c->model('DB::Book')->new_result({}); return $self->form($c, $book); } =head2 form Process the FormHandler book form =cut sub form { my ( $self, $c, $book ) = @_; my $form = MyApp::Form::Book->new; # Set the template $c->stash( template => 'books/form.tt2', form => $form ); $form->process( item => $book, params => $c->req->params ); return unless $form->validated; # Set a status message for the user & return to books list $c->response->redirect($c->uri_for($self->action_for('list'), {mid => $c->set_status_msg("Book created")})); } These two methods could be combined at this point, but we'll use the 'form' method later when we implement 'edit'. Create a Template Page To Display The Form Open "root/src/books/form.tt2" in your editor and enter the following: [% META title = 'Create/Update Book' %] [%# Render the HTML::FormHandler Form %] [% form.render %] <p><a href="[% c.uri_for(c.controller.action_for('list')) %]">Return to book list</a></p> Add Link for Create Open "root/src/books/list.tt2" in your editor and add the following to the bottom of the existing file: ... <p> HTML::FormHandler: <a href="[% c.uri_for(c.controller.action_for('create')) %]">Create</a> </p> This adds a new link to the bottom of the book list page that we can use to easily launch our HTML::FormHandler-based form. Test The HTML::FormHandler Create Form Press "Ctrl-C" to kill the previous server instance (if it's still running) and restart it: $ script/myapp_server.pl Login as "test01" (password: mypass). Once at the Book List page, click the new HTML::Formhandler "Create" link at the bottom to display the form. Fill in the following values: Title = "Internetworking with TCP/IP Vol. II" Rating = "4" Author = "Comer" Click the Submit button, and you will be returned to the Book List page with a "Book created" status message displayed. Note that because the 'Author' column is a Select list, only the authors in the database can be entered. The 'ratings' field will only accept integers. Add Constraints Open "lib/MyApp/Form/Book.pm" in your editor. Restrict the title size and make it required: has_field 'title' => ( minlength => 5, maxlength => 40, required => 1 ); Add range constraints to the 'rating' field: has_field 'rating' => ( type => 'Integer', range_start => 1, range_end => 5 ); The 'authors' relationship is a 'many-to-many' pseudo-relation, so this field can be set to Multiple to allow the selection of multiple authors; also, make it required: has_field 'authors' => ( type => 'Multiple', label_column => 'last_name', required => 1 ); Note: FormHandler automatically strips whitespace at the beginning and end of fields. If you want some other kind of stripping (or none) you can specify it explicitly; see HTML::FormHandler::Manual. Try Out the Updated Form Press "Ctrl-C" to kill the previous server instance (if it's still running) and restart it: $ script/myapp_server.pl Make sure you are still logged in as "test01" and try adding a book with various errors: title less than 5 characters, non-numeric rating, a rating of 0 or 6, etc. Also try selecting one, two, and zero authors. Create the 'edit' method Edit "lib/MyApp/Controller/Books.pm" and add the following method: =head2 edit Edit an existing book with FormHandler =cut sub edit : Chained('object') PathPart('edit') Args(0) { my ( $self, $c ) = @_; return $self->form($c, $c->stash->{object}); } Update the "root/src/books/list.tt2", adding an 'edit' link below the "Delete" link to use the FormHandler edit method: <td> [% # Add a link to delete a book %] <a href="[% c.uri_for(c.controller.action_for('delete'), [book.id]) %]">Delete</a> [% # Add a link to edit a book %] <a href="[% c.uri_for(c.controller.action_for('edit'), [book.id]) %]">Edit</a> </td> Try Out the Edit/Update Feature Press "Ctrl-C" to kill the previous server instance (if it's still running) and restart it: $ script/myapp_server.pl Make sure you are still logged in as "test01" and go to the <http://localhost:3000/books/list> URL in your browser. Click the "Edit" link next to "Internetworking with TCP/IP Vol. II", change the rating to a 3, the "II" at end of the title to the number "2", add Stevens as a co-author (control-click), and click Submit. You will then be returned to the book list with a "Book edited" message at the top in green. Experiment with other edits to various books. See additional documentation on FormHandler HTML::FormHandler::Manual HTML::FormHandler #formhandler on irc.perl.org mailing list: http://groups.google.com/group/formhandler code: http://github.com/gshank/html-formhandler/tree/master AUTHOR
Gerda Shank, "gshank@cpan.org" Copyright 2009, Gerda Shank, Perl Artistic License perl v5.14.2 2012-01-20 Catalyst::Manual::Tutorial::09_AdvancedCRUD::09_FormHandler(3pm)
All times are GMT -4. The time now is 02:35 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy