How to use the ping command in a script to get an IP address automatically and ping it.

This command will get the IP address from the interface supplied and then ping it. ping $(ifconfig enp6s1 | awk ‘/inet / { print $2 } ‘ | sed -e s/addr://)ping $(ifconfig enp6s1 | awk ‘/inet / { print $2 } ‘ | sed -e s/addr://) Here is an example. This shows how well this … Read more

Mt Gox source code leaked to the Internet. This is a good example of how not to setup a bitcoin exchange.

This is a screenshot of some leaked source code for a Bitcoin exchange. This source code is intended to access a MySQL database. Here is the full code listing: http://pastebin.com/W8B3CGiN. The bitcoin digital currency was devised to allow payment over the Internet using a digital currency. This breach shows that security is not absolute. But … Read more