Wednesday, September 27, 2017
Twitter fake page http ltwltter com timed out Beware it will steal your password phishing
Twitter fake page http ltwltter com timed out Beware it will steal your password phishing
If you get a Direct message that looks like this:
�
ROFLMAO i cant stop laughing at this pic of you ppfr.it/434
Direct message sent by YourFriend (@yourFriend) to you (@YourName)
�
The first reaction is to click on the short link ppfr.it/434 which will take you to http://t.co/tIdsrtv which will resolve to http://ltwltter.com/timed_out/ (notice the �l� before the �t� of twitter) which will present a FAKE Twitter login page that looks exactly like the Twitter web site with username and password screen:
Please beware � since this is a FAKE login screen � So do NOT enter your login details!
If you do enter your username and password � then the fake page will steal your username and password and then redirect you to another fake page:
http://ltwltter.com/status/error/ (notice the �l� before the �t� of twitter)
Once the phishers have harvested your login details then they will send DMs to all of your followers and send them the same �ROFLMAO� message and hope that they fall into the same trap and log in to the fake Twitter page.
Be careful out there and remember to ALWAYS check the URL of the page that you are logging in to.
download file now
Friday, September 22, 2017
UBUNTU Linux Give it a try!
UBUNTU Linux Give it a try!
- No more hangs, no more lags!
- No more file corruptions, no more BSOD errors!
- No more viruses, spyware, malware and underware! (kiddin lol)
- Has a section called "Software Center" where everything could be downloaded easily and for free!
- And lastly and the most important is..... its FREE to use, free to distribute and free to modify!
download file now
Tuesday, September 19, 2017
try it babylon com
try it babylon com
Simply Translate
Simple One-click Translation in any Application
any language to any language
- Easy to install
- Easy to use
- Leading dictionary packs � Oxford, Britannica, Wikipedia
- Access to over 2000 dictionaries & glossaries
- Wikipedia inside
from all over the world are registered with
Babylon�s human translation service,
providing fast and accurate translations
in over 32 languages for business
and personal needs.
the easy, fun and fast way
Babylon 9 Translation Software features:
- Available in over 75 languages >>
- Over 2,000 Dictionary titles >>
- Wikipedia @ a click in over 25 languages >>
- Live Translation Community NEW >>
- Spelling and Proofreading NEW >>
- Human Voice NEW >>
- Integrates seamlessly into Microsoft Office
Spellers >> - Web Page & Document Translation >>
Communication
and Productivity
You can also get help from our live community about translation and grammar issues.
download file now
Monday, September 18, 2017
Two excuses IT professionals use
Two excuses IT professionals use
- Your problems are caused by these other applications that I dont support.
- I cant allow you to do that, or have that software because it is a security threat.
The second excuse will be used to explain why they wont let you have the program even before youve installed it. They will insist that every program you want is a security risk.
This is not to say that there are not legitimate reasons for the IT staff at your work to deny you from having no other programs installed except the ones they provide. A good security policy, in my opinion, is to set up an employees computer in a manner that is consistant with their work duties, and then lock it down very tight so the user does not have access to add or remove software, or make any system changes. However, these reasons should be properly articulated using facts and valid arguments, not scape-goats and non-truths.
download file now
Monday, September 11, 2017
Ubuntu 11 10 aireplay ng and the mon0 is on channel 1 error and how to fix it shell script included
Ubuntu 11 10 aireplay ng and the mon0 is on channel 1 error and how to fix it shell script included
I had recently upgrade my Ubuntu install to 11.10. Along with other annoyances I came across I ran into a bit of a deal breaker when I went to run aireplay-ng. I was getting the following error:
mon0 is on channel -1, but the AP uses channel [#]
This was going to be a huge problem since I know that my ZyDAS 1211 chip set was compatible with packet injection. After searching around for a bit I found a great solution from this site here about the drivers and how to patch and reinstall the older ones back in. Below I have a script that you can run to get that installed.

==================================================================
#!/bin/bash
#
# This fix was found at:
# http://linux-software-news-tutorials.blogspot.com/2011/06/solve-error-mon0-is-on-channel-1-but-ap.html
#
# If this script helps you be sure to drop him a line and
# say thanks!
echo -e " 33[1;32m###########################################"
echo -e "# Ubuntu Patched Drivers Installer Script #"
echo -e "# Tested on Ubuntu 11.04 and 11.10 #"
echo -e "###########################################"
echo " Coded By: Travis Phillips"
echo " Date: 01/18/2012"
echo " Website: http://theunl33t.blogspot.com"
echo -e -n " [*] Installing build-essential...33[0m"
sudo apt-get -y install build-essential &> /dev/null
echo -e "33[1;32mDone!"
echo -e -n " [*] Downloading Wireless Drivers...33[0m"
wget http://wireless.kernel.org/download/compat-wireless-2.6/compat-wireless-2011-06-16.tar.bz2 &> /dev/null
echo -e "33[1;32mDone!"
echo -e -n " [*] Extracting...33[0m"
tar -jxf compat-wireless-2011-06-16.tar.bz2
cd compat-wireless-2011-06-16
echo -e "33[1;32mDone!"
echo -e -n " [*] Downloading Patches...33[0m"
wget http://patches.aircrack-ng.org/mac80211.compat08082009.wl_frag+ack_v1.patch &>12 /dev/null
wget http://patches.aircrack-ng.org/channel-negative-one-maxim.patch &>12 /dev/null
echo -e "33[1;32mDone!"
echo -e -n " [*] Applying Patches...33[0m"
patch -p1 < mac80211.compat08082009.wl_frag+ack_v1.patch &> /dev/null
patch ./net/wireless/chan.c channel-negative-one-maxim.patch &> /dev/null
echo -e "33[1;32mDone!"
echo -e " [*] Building patched drivers and installing."
echo -e " 33[31mTHIS WILL TAKE ABOUT 5-10 mins..."
echo -e " Please be patient and do *NOT* interrupt this process33[0m "
make &> /dev/null
echo -e " 33[1;32m[*] Compiling Complete. Installing Drivers...33[0m "
sudo make install &> /dev/null
echo -e "33[1;32m[*] Installing Patched drivers completed!"
echo -e -n " [*] Cleaning Up...33[0m"
cd ..
rm compat-wireless-2011-06-16.tar.bz2
rm -rf compat-wireless-2011-06-16
echo -e "33[1;32mDone!"
echo -e " [*] 33[1;37mScript Finished! Please reboot to finish the patch.33[0m "
==================================================================
To run save it to a save to a file called patchwifidrivers.sh and in a terminal type
chmod +x patchwifidrivers.sh
./patchwifidrivers.sh
Hope this helps some people.
download file now
Thursday, September 7, 2017
Unable To Use Product Key For Clean Install Fix it Error 0xC004F061
Unable To Use Product Key For Clean Install Fix it Error 0xC004F061
Invalid Product Key Error Code: 0xC004F061
FIX : Error 0xC004F061
HKEY_LOCAL_MACHINE/Software/Microsoft/Windows/CurrentVersion/Setup/OOBE
slmgr /rearm
download file now
Wednesday, August 9, 2017
Twitter’s Latest Addition Makes It Easier To Report Threats On Its Service To The Police
Twitter’s Latest Addition Makes It Easier To Report Threats On Its Service To The Police



download file now
Sunday, August 6, 2017
Uber must face charges it discriminates against blind passengers
Uber must face charges it discriminates against blind passengers
Taken from PC World.
A court case that alleges Uber discriminates against blind passengers will be allowed to proceed despite an attempt by Uber to have it thrown out, a California judge ruled late Friday.
download file now