Showing posts with label Tools. Show all posts
Showing posts with label Tools. Show all posts

Facebook reportedly preparing for US election chaos with tools intended for 'at-risk' nations



Facebook is planning for conceivable chaos around the November third US presidential election with inner tools it's used before in nations like Sri Lanka and Myanmar, The Wall Street Journal reported

The plans may incorporate easing back the spread of posts as they begin to circulate around the web, modifying the news source algorithm to change what content users see, and changing the standards for what sort of substance is dangerous and warrants evacuation. They're strategies Facebook has previously used in so-called "at-risk" nations managing mass ethnic unrest or political gore. 

The tools would just be used in case of election-related viciousness or other serious circumstances, according to the WSJ, however some workers at the company said they were worried that attempting to hinder viral substance could inadvertently conceal legitimate political discussions. 

Facebook's handling of rough hate discourse against Rohingya Muslims in Myanmar quite a long while back was broadly reprimanded. After a 2018 free assessment of the situation, the social media giant surrendered it wasn't "doing what's necessary to help keep our platform from being used to instigate division and induce offline viciousness. We concur that we can and ought to accomplish more." It swore to better plan for future risks. 

Facebook CEO Mark Zuckerberg said in a September blog post that the US presidential election "is not going to be business as usual." He said he was "worried that with our nation so divided and election results potentially taking days or weeks to be finalized, there could be an increased risk of civil unrest across the country." 

Platforms are preparing for pre-and post-election vulnerability in the US, after President Trump has repeatedly scrutinized mail-in voting, which many individuals are using this election cycle due to the coronavirus pandemic. He's also declined to state whether he would acknowledge the election results in the event that he loses. 

Facebook said last month that it would not acknowledge new political ads seven days before the US election (however those that had just been endorsed will keep running). It also included a "voter information center" at the top of Facebook and Instagram feeds, and plans to give live, official election results when accessible through an organization with Reuters. Facebook has said it will label any posts pronouncing premature victory, and will eliminate posts with misinformation about COVID-19 and voting. And it plans to ban all US political ads inconclusively after the November third election.
Share:

Using Amap on Kali Linux

There are a lot of different scanning tools on Kali Linux, though they each seem to provide a slightly different function. For instance, NMAP is a great tool for feeling out a local network to identify hosts, open ports, and a few other pieces of key information. On the other hand, Cisco-Torch was created with an emphasis on discovering Cisco devices and network devices, and then to run dictionary attacks on the identified targets.
Today, however, we’re going to be looking at a different scanning tool called Amap. Amap is a next-generation scanning tool that has a massive amount of flags and options in its command syntax, and it can even identify processes and applications when they are running on different ports. For example, if a company decided to host an internal web server that accepted connections on port 1253 instead of 80 (I’m just making that up as an example, no one would ever do that), Amap would be able to discover it.
Furthermore, Amap can find applications and services that aren’t based on ASCII. Amap has a lot of interesting tools, too, such as the ability to send specially crafted trigger packets to generate special responses from servers.
Amap’s Tools and Capabilities
Amap is more than a simple scanner designed to ping a local network to identify active hosts. More specifically, we need to identify two main components and features of the Amap program. First off, Amap comes with a module called amapcrap, which sends random and bogus data to a port.
The port can be TCP, UDP, or even SSL, but the idea is to generate a response from the target port.
The second component is the actual Amap core functionality, which is an Application MAPper.
A Tip for Those of You Who Are Curious
If you’re a Linux newbie, you probably don’t know what verbose mode is. If you’re a Linux veteran, feel free to skip this section to avoid any inherent eye-rolling. Nevertheless, verbose mode is a common option for the vast majority of command line programs and tools.
amap2Verbose mode basically allows you to peek under the hood to understand the inner workings of a command. Typically, after entering a command, you’ll wait for a few moments while it ‘does its thing’ in the background, and it will either return a message indicating success or failure. But with verbose mode, the tool will tell you what it’s doing step-by-step.
I’d highly recommend using the -v option with scanners just so you can see how they operate. For instance, you’ll find that NMAP host discovery scans simply have a looping function, whereby they ping one address after the next and increment the host value by one with each iteration.
Amap Command Syntax and Options
Amap seems to be a rather complicated tool when you view its help screen for the first time, but it isn’t as intimidating as it looks. However, I will say that it has a lot more options and flags than most other commands, though you won’t necessarily use them all.
First off, let’s take a look at the amapcrap options and syntax as follows:
Syntax: amapcrap [-S] [-u] [-m 0ab] [-M min,max] [-n connects] [-N delay] [-w delay] [-e] [-v] TARGET PORT
Options:
-S use SSL after TCP connect (not usable with -u)
-u use UDP protocol (default: TCP) (not usable with -c)
-n connects maximum number of connects (default: unlimited)
-N delay delay between connects in ms (default: 0)
-w delay delay before closing the port (default: 250)
-e do NOT stop when a response was made by the server
-v verbose mode
-m 0ab send as random crap:0-nullbytes, a-letters+spaces, b-binary
-M min,max minimum and maximum length of random crap
TARGET PORT target (ip or dns) and port to send random crap
/*This tool sends random data to a silent port to illicit a response, which can
then be used within amap for future detection. It outputs proper amap
appdefs definitions. Note: by default all modes are activated (0:10%, a:40%,
b:50%). Mode ‘a’ always sends one line with letters and spaces which end with
\r\n. Visit our homepage at http://gwww.thc.or */
Next, let’s take a look at the options and flags for the actual Amap portion of the tool. Be forewarned, there are more options for this tool than most other applications:
Syntax: amap [-A|-B|-P|-W] [-1buSRHUdqv] [[-m] -o ] [-D ] [-t/-T sec] [-c cons] [-C retries] [-p proto] [-i ] [target port [port] …]
Modes:
-A Map applications: send triggers and analyse responses (default)
-B Just grab banners, do not send triggers
-P No banner or application stuff – be a (full connect) port scanner
Options:
-1 Only send triggers to a port until 1st identification. Speeeeed!
-6 Use IPv6 instead of IPv4
-b Print ascii banner of responses
-i FILE Nmap machine readable outputfile to read ports from
-u Ports specified on commandline are UDP (default is TCP)
-R Do NOT identify RPC service
-H Do NOT send application triggers marked as potentially harmful
-U Do NOT dump unrecognised responses (better for scripting)
-d Dump all responses
-v Verbose mode, use twice (or more!) for debug (not recommended :-)
-q Do not report closed ports, and do not print them as unidentified
-o FILE [-m] Write output to file FILE, -m creates machine readable output
-c CONS Amount of parallel connections to make (default 32, max 256)
-C RETRIES Number of reconnects on connect timeouts (see -T) (default 3)
-T SEC Connect timeout on connection attempts in seconds (default 5)
-t SEC Response wait timeout in seconds (default 5)
-p PROTO Only send triggers for this protocol (e.g. ftp)
TARGET PORT The target address and port(s) to scan (additional to -i)
amap is a tool to identify application protocols on target ports.
Note: this version was NOT compiled with SSL support!
Usage hint: Options “-bqv” are recommended, add “-1” for fast/rush checks.
Usage Example
The command syntax looks pretty hairy, but it isn’t after you’ve played around with the tool for only a couple hours. We’re going to go through a short demonstration to highlight applicable command syntax, but first please heed a warning. If you want to test out this tool, only do it on your home network or on devices that you own.
Don’t run around in public or connect to a Wi-Fi hotspot to start scanning other people’s computing devices. It’s illegal and immoral. That said, let’s take a look at an example that scans a single host that is presumed to be a web server:
  • amap -bqv 10.1.1.54 80
This command will scan the 10.1.1.54 host on port 80 (HTTP), and will print ASCII banner response, omit closed ports, and print the process in verbose mode.
Final Thoughts
There are a myriad of other options that can be used with Amap, and I encourage you to test it out. However, for simple host discovery and scanning for open ports, I still prefer to use NMAP. It’s just easier to use in my opinion, or perhaps it’s simply because I feel more comfortable using it. At any rate, Amap is another great scanner that can be used to identify hosts and fingerprint systems.
Share:

Keep track of the text that you copied and forgot to paste

You might have sometimes come across some situations where you might have copied a text and then forgot to paste the text onto the destination file , or even you accidentally copied another text without even pasting the previous text on to the file.Well there is a perfect tool for this problem and that is the reason why i wrote this post.Read on..
Well the easy clipboard management tool is called clipcube , that lets you manage your clipboard easily and more effectively. This tool is available from clipcube.wikispaces.com which is a small free and lightweight tool that doesn’t require any kind of installation.
clipcube-hackhow





Once you run the tool , an icon pops up in the system tray and by which you can see all the recent copied text on the tools interface with the date and time of the copy. You can copy any text back to the clipboard using the 2page button which moves the text onto the top of the list.
So here is the download link for the tool and you can have ease of maintaining your clipboard without losing any of the previously copied text.
Check out my tools section for more cool and useful tools for your daily needs.
Share:

Delete or Unlock blocked files using free tool Lock Hunter

Lock hunter is a freeware software.This helps you to unlock blocked files and even delete blocked files which gives you delete error.It even helps renaming or even copying the blocked file.
Lock hunter displays the process on how it carries out a lock on a file or a folder.
It even shows how to unlock,rename ,copy or delete a locked files and allows to remove locking processes from hard drive,deletes the files to the recycle bin so we can even restore them if it was deleted by any kind of mistake.It supports both 32 and 64 bit windows operating systems.
If you ever have installed a file and you cannot delete or stop it from running then you can give this free tool a try.You can try this tool to find and also that delete running file completely.
By Running the Lock hunter program opens this screen:

So if you have unwanted programs running on  background we can use Lock Hunter.Download LockHunter
Share:

How To get Free SMS Alerts for New emails on Gmail,Hotmail,YahooMail,AOL etc

email-to-smsThere has not been a direct service from any of the popular email services for getting a SMS alert for receiving a new email in your inbox. Well here is a trick to do just that !!.The trick allows you to get free SMS alerts for any mobile network in india , as soon as you receive a new email in your email inbox and for free.
So here are the steps for setting the SMS updates.
SMS configurations
site2sms



Step 1 : Register a account for free SMS service like site2sms.Then log into your Dashboard after verifying your account.
Step 2 :  Here at the top you will notice a new option called Email2sms alerts in your Dashboard.Click the link and it will take you to its settings page.
Step 3 : In the settings page , Activate the service and then check the preferred time and days for receiving the alerts. You can even block some email id s from not receiving  the alerts.
Step 4 :  Note down your unique site2sms email id “eg:123456789012@site2sms.com”, and next configure your email for the Alerts.
Email configurations

Step 1 : Log into your email id and click on the Settings and then click on ‘FORWARDING/POP/IMAP’ option.

forward-email









Step 2 : Click on the incoming mail forwarding option and enter in your site2sms email id there.
Step 3 : Confirm your forwarding option by logging into your site2sms email and clicking on the confirmation message in the inbox from for eg:Gmail . And then copy the verification code sent by Gmail to your Mobile phone onto the verification box, and you are ready to go with your free SMS alerts for your incoming email.
Leave your comments if you have any other tricks related to this info..Cheers :D
Share:

Get suggestions from Google for speeding up your website

site-speed-hackhow-histogramThere are a lot of tools that are available on the internet for free use and also commercial. But sometimes its best to know what is really  expected from Google from your website about your website speed and loading time , if you want to consider good amount of traffic from search engines like Google.
Google ranks the page based on their content as well as their loading speed and lot of other factors that affect the page rank. So it is required to optimize your site based on interactive and attractive designs and at the same time depend on lighter resources for its implementation.

Google-page-Speed-online-hackhow



So here is a great tool from Google labs that gives you a detailed advice for your entered website url and suggests the best required tweaks based on priority on different aspects of the page speed. The tool is called the Google’s Page Speed online tool which will as you for your website url and after clicking the Analyse Performance carries out the analysis to rank you based on different factors of your website page speed.Also gives you advice on making your site faster.
Fell free to check out this awesome tool to get free useful advice to optimize your site.
Share:

Hack Cellphones With Super Bluetooth Hack

Super Bluetooth Hack is the best and also well known Mobile Bluetooth hacking software available. Many of you might be aware of this or even already be using this  free tool. So the post is mainly for the noobs out there who didn’t come across this tool until now.
Super-Bluetooth-Hack-v107
Super Bluetooth Hack is a free and most importantly the most powerful hacking software for mobile phones that exists till date. It includes a wide range of  features like..
  • Import Contacts.
  • Play Songs in music Player
  • Switch Off
  • Restart Phone
  • Restore Factory Settings
  • Play Ringtones
  • Read Inbox
  • Send Message
  • Call using his phone
  • Browse Files
  • Change Profiles
The tool requires the victim to accept the Bluetooth connection first, but this is just a one time procedure for pairing the phones.Then it doesn’t require to pair the phones the next time.
Check out the tool from the download link given below and try out this tool in your Symbian phones.n have Fun!!!!..:)
Download
Share:

5 Best Free tools to Compress Images online

Compressing the image is the basic needs of any blogger who would want to optimize the images on his site to save space space and bandwidth for faster loading time. But what if you suddenly experience a problem with your compression tool or either you dont have the tool or resources to do the compress at your workplace.So here are some of the top 5 best image compression tools that are available online.
change-image-optimize







This was one of the tools that topped the search for image compresses online. this tool compresses , re sizes and optimizes images online.But may even give a optimized image with a larger file size.So be sure to reduce the quality level to get compressed images.
Here is another tool that compresses images online  and has a cleaner interface.Gives you the percentage savings after the image is compressed. Even converts files like GIF to PNG for better compression.


This is another Great tool that features full control over the output of your image. You can opt to set in the compression percentage and the tool will take care of the rest.There are no complex settings and involves just setting up the percentage of compression.

Here the image is compressed to the size lower than the original file given to it . The interface lets you choose multiple files for upload and compression at the same time.The converted file may be in PNG format and you don’t have much control over it.

Lets much control over the image optimization by giving you the options to set color variation,intensity,pixels, border and more.The optimized image may be larger than the original file itself but keeping the same format as original.
Share:

Change IP address instantly for free While Browsing

You may need to change your IP address while surfing the internet for anonymity from search engines storing your data or to access any specific location based service.  Of course you have a lot of tools offering these features like this, as the most popular anonymizer tool  tor.But the problem with that is it takes too much time to start up or it needs to be installed first to use it. But here is a free online tools that lets you change your IP address on the fly..




Here is a screenshot of the website, shows the multiple IP addresses to choose from and some may be free while others require to be purchased.
On clicking on any one of the IP addresses , it will take you to the next screen where it will display a sub address bar to your browser, which when you enter the url will redirect your request to the new IP address.
So there you go, an easy and a quick way to change your IP address on the go, without the hassle of installing any software.Try New IP Now and change your IP address instantly.
Share:

How to Browse and get Linux Partition files in Windows

What if you wanted to get some files from the linux partition while in windows and you don not find a way to get it.Or what if your linux boot failed and you need to get some important files from the linux partition.Well here is a solution.Many of the linux distributions use the ext4 partition during the installation and  the older versions used the ext2 and ext3 partitions.
While separate tools are available to access these kind of partitions.A simple yet powerful tool can combine this feature to access any kind of linux partitions.
This software is called Ext2explore which is a open source and free software that lets you browse through the linux partition from your windows operating system.You can run this software in windows XP3, Windows Vista ad Windows 7. Just download the software from the sourceforge website and unzip in any folder and this doesn’t require any kind of installation.
After you unzip it you will need to set up some compatibility issues.So Right click on  ext2explorer.exe file and go to properties.Under compatibility tab ,select windows xp (service pack 3) and under privilege level check the Run this program as an administrator option.

Now double click on the .exe file to run it and you will see the linux partitions in the disk scanned and listed.And remember to run this software as a administrator to view the files.
To save any file just browse to the file and right click to select save option and it will ask for the location to save the file on the disk outside the linux partition.
So there you have it, and easy and a free way to get your files from the linux partition from windows.Cheers..:)
Share:

Hack Cellphones With Super Bluetooth Hack

Super Bluetooth Hack is the best and also well known Mobile Bluetooth hacking software available. Many of you might be aware of this or even already be using this  free tool. So the post is mainly for the noobs out there who didn’t come across this tool until now.
Super-Bluetooth-Hack-v107
Super Bluetooth Hack is a free and most importantly the most powerful hacking software for mobile phones that exists till date. It includes a wide range of  features like..
  • Import Contacts.
  • Play Songs in music Player
  • Switch Off
  • Restart Phone
  • Restore Factory Settings
  • Play Ringtones
  • Read Inbox
  • Send Message
  • Call using his phone
  • Browse Files
  • Change Profiles
The tool requires the victim to accept the Bluetooth connection first, but this is just a one time procedure for pairing the phones.Then it doesn’t require to pair the phones the next time.
Check out the tool from the download link given below and try out this tool in your Symbian phones.n have Fun!!!!..:)
Download
Share:

How to Download Any Video By Just Playing it Once

Playing any Online videos takes a lot of time to download on some of your slower connections and so loading a video once, may take up few minutes and when you realize that you liked the video and want to download it, you will need to start the hectic Download process from the beginning which again will make you to wait till the whole video is Downloaded again.So what if you just played a video in Youtube,Metacafe or any other website and you just need to copy the played video onto your computer without the need of downloading it again.Well there is a simple solution that requires you to install a tiny software that will help you to search the browser cache where the video is stored in the temporary directory and you will need to just save the copy of the cache video file onto your hard disk to view it offline.You can even do this without the tool,but this software helps you to easily identify and help you to save the files easier and faster.
So just follow the simple steps to know how to install the software and how the tool works..
Step 1
In order for you to easily identify the videos in the browser cache files in the temporary directory, download a software called Video Cache View from the link provided and install the software.
This software helps you to identify the video files out of the temporary files stored in the cache,  as the file names will not always be stored in their actual extensions and rather will be in the .tmp or some other file extension.The software helps you to identify the video by a preview by playing it, then it will rename the video file while saving it to the hard disk.
Step 2
Play any video file in your browser from any website.Now open Video Cache View and refresh it to find the temporary video files list.

Step 3
Confirm the video you wanted to copy to the Hard disk by playing any selected video from the cache.Once you find your video, just right click on the file and select ‘Copy selected files to’ and type in the file name to save the file.
Now goto the location of the folder you saved the file and you will find a flv file ready to be played offline and for you to enjoy the video.
If you would like to share any tips or softwares that you think is useful, or if you have any queries about this article, then let us know by your comments.Cheers..:D
Share:

Researchers Release tool that can take down Secure Websites

The THC-SSL-DOS tool released on Monday exploits a flaw in SSL(Secure Sockets Layer) renegotiation protocol by flooding the web service with multiple renegotiation requests over a  already established SSL connection for a new key. This works in same way as more common DOS(Denial of service) attacks , except the fact that this flaw in SSL renegotiation takes up more resources than a single HTTP request, hence leading to taking down a large webserver with a single computer.

The tool was released by a group of German Researchers called the Hackers Choice to exploit the flaw in SSL, which is used in many of the secure web services like Email, Banking etc, to transfer secure data across the network between user and a website without interception by a third person.
The Researchers said in a blog post- “We are hoping that the fishy security in SSL does not go unnoticed. The industry should step in to fix the problem so that citizens are safe and secure again. SSL is using an aging method of protecting private data which is complex, unnecessary and not fit for the 21st century,”.
This exploit can allow a single laptop to take down an average server with a greater Bandwidth over a standard DSL connection . It can also take down multiple larger Webservers with few computers. The group claims that the attack would also work on non SSL enabled websites with few modifications on the tool.
For more info-The Hackers Choice
Share:

Best 6 proxy Sites to Hide Your Identity

Share:

DISCLAIMER

The information provided on hottechtips.blogspot.com is to be used for educational purposes only. The website creator is in no way responsible for any misuse of the information provided. All of the information in this website is meant to help the reader develop a hacker defense attitude in order to prevent the attacks discussed. In no way should you use the information to cause any kind of damage directly or indirectly. The word “Hack” or “Hacking” on hottechtips.blogspot.com should be regarded as “Ethical Hack” or “Ethical hacking” respectively. You implement the information given at your own risk.