I needed to extract an IP Address from each line inside of a file and kicked out the following script:
#!/usr/bin/python
# Extract IP Addresses
import re
file = open("temp.log")
for line in file:
ip = re.findall( r'[0-9]+(?:\.[0-9]+){3}', line )
print ip
Twitter: @lokut
This blog is for educational purposes only. The opinions expressed in this blog are my own and do not reflect the views of my employers.
Wednesday, December 24, 2014
Tuesday, December 23, 2014
Using bash script to copy folder paths and file names with spaces
Recently I had to write a script that would copy a list of folders and files with spaces in the names to an alternate location. I found that you do not need to escape the special characters in the list if you place quotes around the variable called from the list in a loop.
#!/bin/bash
while read -r line # Needs the -r variable
do
cp "$line" /tmp/files/. # Place quotes around the variable called in the loop
done < '/tmp/list.txt'
I wanted to document this because of the 30 minutes I lost in my life trying to figure out the nuances around this.
#!/bin/bash
while read -r line # Needs the -r variable
do
cp "$line" /tmp/files/. # Place quotes around the variable called in the loop
done < '/tmp/list.txt'
I wanted to document this because of the 30 minutes I lost in my life trying to figure out the nuances around this.
Subscribe to:
Posts (Atom)
Test Authentication from Linux Console using python3 pexpect
Working with the IT420 lab, you will discover that we need to discover a vulnerable user account. The following python3 script uses the pex...
-
Here is a quick walk through of GetBoo. The first item that I found was you can harvest the usernames of the existing users that are regist...
-
As I was glancing through the logs of my honeypots I spent some time to look at the following logs. In the past I have just overlooked them...
-
I thought I would work through a few of these web applications provided by OWASP on their broken web applications VM. The first one I th...
-
Today looking at the logs of the honeypots, I became curious based on the whois of the IP Addresses attempting to login to SSH which country...
-
Recently I was doing some scanning with a tool that is available on github called masscan. The tool allows you to configure a configuration...