Elgoog Hacker

Elgoog Hacker AN ETHICAL HACKING GROUP......
� Verified Official © █║▌│█│║▌║││█║▌?

BEST Computer Tips,Hacking Tips,Free Softwares,Free Games,Mobile Tips and Tricks,Internet Tips,Internet HaLearn how to hack ethically and get aware of latest hacks and tricks. Also download free hack tools and softwares 100% clean..cking Tips,Virus Coding,Free Movies Download,

Ministry of defence Indian Govt websites not 'hacked', downtime due to 'hardware failure'There has been no cyber attack ...
06/04/2018

Ministry of defence Indian Govt websites not 'hacked', downtime due to 'hardware failure'

There has been no cyber attack on any government website or any sabotage. It is a hardware failure, affecting around 10 government websites. Drupal is a content management software used by the affected websites. website was sorting some storage issues.

The website was temporarily taken down as an extra precaution in the backdrop of the 'hacking' of the defence ministry site .

See how you can use data to improve your website's performance. Get insights from Facebook Analytics on the people visit...
15/11/2017

See how you can use data to improve your website's performance. Get insights from Facebook Analytics on the people visiting your website, where they're coming from and what actions they're taking.

Read More At https://tinyurl.com/elgoogblog

Setting up analytics for your website gives you a data-driven approach to understanding what's working and what can be improved. In this post, we'll walk you through how to use analytics to understand your customers' behavior, and in turn, build a better website that drives growth for your business.

Try This ! Type Needxp.com/yourname  in comment and see what u need !
04/07/2017

Try This !
Type Needxp.com/yourname in comment and see what u need !

✌ How to Hack Someone’s WebCam...✌Note: Education purpose only ,Note: All the below method could be done only if you are...
17/01/2017

✌ How to Hack Someone’s WebCam...✌

Note: Education purpose only ,

Note: All the below method could be done only if you are running on the Kali Linux on your computer device.

1. The very first thing that you should actually know is you can only hack anyone’s we**am only and only if the device with which it is attached is been connected to the internet connection. This is compulsory because you cannot gain up the access to any offline device by any method as it would be impossible. You will have to create or get some kind of connection between the device that you actually want to hack from your device.

2. Now to find and check up the victim’s we**am on the internet you have to turn on the Metasploit and then using it install up the interpreter around the victim’s device. Inside the Metasploit, you have to get up the title of any active we**am from the list that looks like a page of commands. To get that page on your screen just run the command ” meterpreter>we**am_list”

3. After that run up the another command for the particular we**am selected from the list i.e “meterpreter>we**am_snap”, this will return up the victim’s we**am control provided to you and hence using that you can easily click up the images and view them on your screen.

4. To hack up the video capabilities of the victims we**am you will have to run up the another particular command ” meterpreter>run we**am -p /var/www” , this will respond you with the full view from the victim’s we**am and then you can actually record up the videos or just view up the scene like that only.

Conclusion: Now after reading up the above article you have got a rough idea about how you can easily hack someone’s we**am but to get up the real experience you should go and try this method. Remember that this method can also give you someone else’s information until the we**am could display you all that hence you can also use this technique to keep a spy check on some surrounding like your home, workplace etc through using any of your PC, Laptop with an inbuilt we**am.

11/07/2016



All those dual Whatsapp apps are kinda crap. Just use Parallel Space-Multi Accounts - Android Apps on Google Play. This app lets you make multiple accounts for any social media app, be it Facebook, messenger, Instagram, WhatsApp etc.

03/07/2016

>>>>【How To Increase Internet Speed by 20-30%】>>>>

How To Increase Internet Speed by 20-30 :-Hello friends today i am going to share a very helpful method to increase your internet speed by 20-30% than the actual speed.Today many of us face problem of slow internet on our pc. To resolve this problem this method works perfectly.Actually in windows operating system microsoft reserves 20% of bandwidth of your network. And if you free that reserve bandwidthyour Internet Speed will get Boost. You can follow this trick with some steps that i have given below. Read them all carefully and with tha you can Increase Internet Speed.

Now steps to get your reserve Internet speed back:-

Way To Increase Internet Speed by 20-30%

Click Start->Run->gpedit.msc (in windows 7) and ::click start and type gpedit.msc (in windows 8).
This opens the registry policy editor.
Then goto ->Local Computer Policy ->Computer Configuration ->Administrator Template ->Network -> Qos Packet Scheduler -> Limit reservable Bandwidth
Double click on Limit reservable Bandwidth It will say it is not configured, but the truth is under the Explain tab i.e. By default packet scheduler limits the by 20 % of the bandwidth of theconnection but use the setting to override the default.
So the trick How To Increase Internet Speed by 20-30% is to Enable the reserve bandwith, then set it to ZERO. this will enable the system to reserve nothing rather than the reserved 20%, It will works on Win XP as well. And with this use will boost up intrenet speed and browser faster on computer network.

NMAP (Network Mapper )Download link : https://nmap.org/Nmap is an abbreviation of 'Network Mapper', as is a very well kn...
30/01/2016

NMAP (Network Mapper )
Download link : https://nmap.org/

Nmap is an abbreviation of 'Network Mapper', as is a very well known free open source hackers tool. Nmap is used for network discovery and security auditing. Many system admins use nmap for network inventory, open ports, managing service upgrade schedules, and monitoring host or service uptime. The tool uses raw IP packets in creative ways to determine what hosts are available on the network, what services (application name and version) those hosts are offering, what operating systems (and OS versions and possible patches) and what type and version of packet filters/ firewalls are being used by the target.

Nmap is a very popular hacking tool that was originally created to act as a method of being able to scan large networks, but it works absolutely fine o single hosts (targets). Nmap works on all major computer operating systems, and official binary packages are available for Linux, Windows, and Mac OS X. Nmap was traditionally a command-line tool, but there is a GUI available called 'Zenmap'.

Nmap Free Security Scanner, Port Scanner, & Network Exploration Tool. Download open source software for Linux, Windows, UNIX, FreeBSD, etc.

28/06/2015

Invisibly Execute BAT File in the Background

A hacker also sometimes need to hide their script in the background, because they don't want the victim become suspicious if something popped out in their window, since any command prompt window will be visible until the .BAT/.CMD file ex*****on is complete.

# # Requirement:

1. Notepad or any other text editor

>>> >>>> How to Invisibly Execute BAT File in the Background:

1. Let say I will ping google.com by utilizing BAT script.

>>ping www.google.com

and then save as ping.bat

2. When we double click the ping.bat we've just created, a command prompt window will popped out and pinging google.com.
and the window will automaticaly closed after the ex*****on is complete.

3. We will utilize Windows Script Host RUN method to invisibly execute BAT file in the background.

This is the script :

Set WshShell = CreateObject("WScript.Shell")
WshShell.Run chr(34) & "C:\ping.bat" & Chr(34), 0
Set WshShell = Nothing

save the script as hidden.vbs with.vbs extension.

4. I've modified the BAT script a little bit, because we need to check whether the script was successfully executed or not.
>>ipconfig > result.txt

all IP configuration result will be saved into result.txt file.

5. When we execute the hidden.vbs, no window popped out and if our script was successfully executed in the background, in our folder location should have a new file result.txt contained with information about windows ip configuration.

Www.facebook.com/Hack4india

22/05/2015

::: Phone hacking: seventy more high profile claimants to sue Trinity Mirror :::

New batch of claimants include Davina McCall and Sheryl Gascoigne as Trinity Mirror ordered to pay £1.2m in damages to eight victims.

Trinity Mirror is being sued by more than 70 celebrities, sports stars and politicians after the newspaper group was ordered to pay £1.2m in damages to eight phone hacking victims.

Davina McCall, the television presenter, and Sheryl Gascoigne, the former wife of ex-footballer Paul Gascoigne, are among scores of high-profile figures suing the Daily Mirror and Sunday Mirror publisher, the high court in London heard.

20/04/2015

$$ NEWS $$
:::Security researcher jokes about hacking a plane, barred from boarding :::

Washington: United Airlines stopped a prominent security researcher from boarding a California-bound flight late Saturday, following a social media post by the researcher days earlier suggesting the airline's onboard systems could be hacked.

The researcher, Chris Roberts, attempted to board a United flight from Colorado to San Francisco to speak at a major security conference there this week, but was stopped by the airline's corporate security at the gate. Roberts founded One World Labs, which tries to discover security risks before they are exploited.

Roberts had been removed from a United flight on Wednesday by the FBI after landing in Syracuse, New York, and was questioned for four hours after jokingly suggesting on Twitter he could get the oxygen masks on the plane to deploy. Authorities also seized Roberts' laptop and other electronics, although his lawyer says he hasn't seen a search warrant.

A lawyer for Roberts said United gave him no detailed explanation Saturday why he wasn't allowed on the plane, saying instead the airline would be sending Roberts a letter within two weeks stating why they wouldn't let him fly on their aircraft.

"Given Mr. Roberts' claims regarding manipulating aircraft systems, we've decided it's in the best interest of our customers and crew members that he not be allowed to fly United," airline spokesman Rahsaan Johnson told The Associated Press. "However, we are confident our flight control systems could not be accessed through techniques he described."

When asked what threat Roberts posed if United's systems couldn't be compromised, Johnson said Sunday: "We made this decision because Mr. Roberts has made comments about having tampered with aircraft equipment, which is a violation of United policy and something customers and crews shouldn't have to deal with."

Johnson said the airline reached Roberts several hours before his flight to tell him he couldn't fly. But a lawyer for Roberts said Sunday that when his client received that call, the caller would only say he or she was from United, and wouldn't give Roberts a name or callback number. When Roberts then tried calling the number back from his phone's caller ID, it rang instead to a resort hotel, and Roberts assumed it was a prank call, Roberts' lawyer said.

In recent weeks, Roberts gave media interviews in which he discussed airline system vulnerabilities. "Quite simply put, we can theorize on how to turn the engines off at 35,000 feet and not have any of those damn flashing lights go off in the cockpit," he told Fox News.

Roberts also told CNN he was able to connect to a box under his seat at least a dozen times to view data from the aircraft's engines, fuel and flight-management systems.

"It is disappointing that United refused to allow him to board, and we hope that United learns that computer security researchers are a vital ally, not a threat," said Nate Cardozo, a staff attorney with the San Francisco-based Electronic Frontier Foundation, which represents Roberts.

Cardozo said Sunday he hasn't seen a copy of a search warrant that would have been used to seize Roberts' electronics, and that he's working to get the devices returned.

The FBI declined to comment on the matter Sunday.

20/04/2015

Secret Hacking Codes for iphone
Secret Hacking Codes for iphone, Secret Hacking Codes for iphone 4 or 4s, iphone hacking code, iphone hacking software
Secret Hacking Codes for iphone
* #43 #
Use to verify if call waiting is enabled
* #61 #
Verify the number for unanswered calls
*3282 #
Get your data usage information.
*729
Options to make payments. Its operator specific.
* #62 #

Verify the number for call forwarding if no service is available.
* #67 #
Verify the number for call forwarding if phone is busy
* #33 #
To verify whether barring is enabled or disabled for outgoing
* #21 #
To display the settings for your call forwarding
*3001 #12345 #*
Enters Field mode which allows you to access most of the hidden settings and functions of your iPhone.
* #30 #
This shows whether you have enabled or disabled the presentation of the calling line, presumably the number of the party placing the call.
* #76 #
State whether the connected line presentation is enabled or disabled. Similar to the calling line presentation.
* #06 #
Display the IMEI of your iPhone, as always this is the standard code for all brands of phones.
*225 #
Displays the account balance for postpaid contracts.
*777 #
Displays the account balance for prepaid accounts.
*646 #
Displays the remaining minutes available.
611
Dials customer service, (114 in RSA for Vodacom). Its operator specific.
Note: This is the list of all iPhone codes available till now in market. If hope i haven’t even missed the one. If still you are able to find any extra hack code for iPhone 4 or iPhone 4S then don’t hesitate in sharing, as Sharing is Caring.

Dirección

Arevalo 551
Lobos
7240

Página web

Notificaciones

Sé el primero en enterarse y déjanos enviarle un correo electrónico cuando Elgoog Hacker publique noticias y promociones. Su dirección de correo electrónico no se utilizará para ningún otro fin, y puede darse de baja en cualquier momento.

Compartir