Skip to main content

Posts

Showing posts from April 22, 2017

CyberWar - check real time attack in world

Cyber War Real Time Cyber War – Here are some awesome sites which give you the live detail of Cyber Wars and threats that are occurring in the world. The graphic awesomeness gives you the goosebumps. With details on what ports? Country? Region? Etc.. is available. These contain DDOS attacks also. Worth visiting these - http://map.norsecorp.com/#/ https://cybermap.kaspersky.com/ http://hp.ipviking.com/ https://threatmap.checkpoint.com/ThreatPortal/livemap.html https://www.fireeye.com/cyber-map/threat-map.html

how to Find Your Gateway IP(linux/win/osx)

It's important for you to know the internal IP address of your default gateway, which is normally your router's LAN IP address. If you have ever had to access your router to configure it, you should know the address. It's what you type in your browser address bar to reach the configuration interface (example: http://192.168.1.1/ ) and, if not, you can find it with the following steps: Windows : Click Start > All Programs > Accessories > Command Prompt . When Command Prompt is open, type the following command: ipconfig | findstr /i "Gateway" (You can copy & paste it in the command prompt; just right-click anywhere in the command prompt window and select Paste .) You should see something like this: C:\Documents and Settings\administrator>ipconfig | findstr /i "Gateway" Default Gateway . . . . . . . . . : 192.168.1.1 In this example, your default gateway (router) IP address is 192.168.1.1 . Linux : You

How can I decode a base64 string from the command line?

If you have ever needed to quickly decode or encode base64, Linux has a command line utility called base64 that works great. I’ll show you how it works! To encode text to base64, use the following syntax: $ echo -n 'devilzlinux.blogspot.com' | base64 ZGV2aWx6bGludXguYmxvZ3Nwb3QuY29tCg== To decode, use base64 -d. To decode base64, use a syntax like the following: $ echo -n ZGV2aWx6bGludXguYmxvZ3Nwb3QuY29tCg== | base64 -d devilzlinux.blogspot.com Note: if on OS X, use capital D: echo -n ZGV2aWx6bGludXguYmxvZ3Nwb3QuY29tCg== | base64 -D same work with another way python ___________________________________________________________ python - m base64 - d <<< "ZGV2aWx6bGludXguYmxvZ3Nwb3QuY29tCg==" devilzlinux.blogspot.com  ____________________________________________________________________ perl _____________________________________________________________ perl - MMIME :: Base64 - ne 'printf "%s\n",decode_base