EQGRP icon indicating copy to clipboard operation
EQGRP copied to clipboard

Help cannot open it

Open ghost opened this issue 7 years ago • 37 comments

Hi, i downloaded the file and when i try to open some files its a unknown file which application should i install to use them?

ghost avatar Apr 16 '17 00:04 ghost

Which file are you exactly trying to open?

doomguy avatar Apr 17 '17 16:04 doomguy

Like most of them (ex : Linux then etc then ,oprc/autoaccess/autoaddlias.... Isn't there a file that i can use these codes? Like an application?

ghost avatar Apr 17 '17 22:04 ghost

bash + python

Atavic avatar Apr 18 '17 19:04 Atavic

Isnt there an application where i could use them?

ghost avatar Apr 18 '17 19:04 ghost

When i open it with Python it opens the code...

ghost avatar Apr 18 '17 19:04 ghost

Bash shell: python extrabacon_1.1.0.1.py http://xorcat.net/2016/08/16/equationgroup-tool-leak-extrabacon-demo/

Atavic avatar Apr 18 '17 20:04 Atavic

Where should i put the password?

ghost avatar Apr 18 '17 20:04 ghost

What does the Bash shell do?

ghost avatar Apr 18 '17 20:04 ghost

I don't get it should i install something over then the file on github?

ghost avatar Apr 18 '17 21:04 ghost

I downloaded the link you just send me what should i do next?

ghost avatar Apr 18 '17 21:04 ghost

You need Linux for most of these files. If you don't know what bash is, or what Linux is, you shouldn't be here.

On Apr 18, 2017, at 4:08 PM, Sk8erboi84 [email protected] wrote:

I don't get it should i install something over then the file on github?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

Ekultek avatar Apr 18 '17 21:04 Ekultek

@Ekultek Can these files run with Kali Linux?

ghost avatar Apr 18 '17 21:04 ghost

The link you sent me what does it do?

ghost avatar Apr 18 '17 23:04 ghost

BTW these scripts were taken from a NSA server that operated against compromised systems. By running these scripts @home you won't get so much, as you do not know where the compromised systems are. The interest in this repo is looking at how NSA scripters work.

If interested, dig @ wikileaks and check:

  • [ ] Development Tradecraft DOs and DON'Ts
  • [ ] AV Defeats

Atavic avatar Apr 18 '17 23:04 Atavic

BTW how do you know all of that?

ghost avatar Apr 18 '17 23:04 ghost

Correction these scripts where apparently taken from compromised systems and created by the "NSA". There's no proof nor any kind of evidence that these came from any sort of governmental figures, nor any of the sort. Nonetheless they are still very interesting and are terribly written

On Apr 18, 2017, at 6:38 PM, Sk8erboi84 [email protected] wrote:

BTW how do you know all of that?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

Ekultek avatar Apr 18 '17 23:04 Ekultek

I opened the files in Kali Linux but can't find any application to open i can only find codes...

ghost avatar Apr 18 '17 23:04 ghost

@Ekultek Equation Group is considered part of the NSA division TAO.

Atavic avatar Apr 19 '17 20:04 Atavic

@Atavic I'm aware of that. But there's still no proof this was created by them.

On Apr 19, 2017, at 3:37 PM, Atavic [email protected] wrote:

@Ekultek Equation Group is considered part of the NSA division TAO.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or mute the thread.

Ekultek avatar Apr 19 '17 20:04 Ekultek

I opened the files in Kali Linux but can't find any application to open, I can only find codes...

ghost avatar Apr 19 '17 21:04 ghost

I haven't seen any of these programs opening up backdoors in your system however, you should still not use them because:

  1. You clearly have zero clue what you're doing and need to brush up on your linux skills and google-fu
  2. There very well may be some hidden malware that will wind up compromising your computer
  3. All of these exploits are old and have already been patched; the Windows ones in the latest dump still work for now. (although for some strange reason Windows had a patch ready nearly immediately, almost as if they work directly with NSA hmmm)

And finally, any linux distro can use these programs fam.

NoahGWood avatar Apr 23 '17 22:04 NoahGWood

I know but with what should i open it in my terminal?

ghost avatar Apr 24 '17 00:04 ghost

How can i learn how to use kali linux ? Can't find a lot of things on youtube.

ghost avatar Apr 24 '17 00:04 ghost

@Sk8erboi84 here

Atavic avatar Apr 25 '17 19:04 Atavic

What is that?

ghost avatar Apr 25 '17 22:04 ghost

Maybe you should leave these alone until you have a good grip on how to use kali

caltus avatar May 07 '17 06:05 caltus

Can you at least tell me how can i connect to wifi cant find it , there is only wired and its not working. How can i connect with wifi?

ghost avatar May 07 '17 13:05 ghost

You dont even know how tho connect to wifi. What the hell are you doing here. First you should learn commands like ls or ifconfig before you try to start hacking and stuff like this. And I recommend a wifi adapter to connect to your wifi.

thehydramaster avatar May 15 '17 21:05 thehydramaster

he is kidding right ????????

kali64amd avatar May 22 '17 09:05 kali64amd

I think he is joking!

Dimon1011 avatar Oct 06 '17 18:10 Dimon1011

It could easily be not a joke, Quora is full of questions like this.

es20490446e avatar Dec 15 '18 03:12 es20490446e

@Sk8erboi84 Bash is a terminal. Instead of running programs on windows, they are run by typing their name.

This has the advantage of "pipping" various simple operations into more complex ones, so you have much more flexibility on what you can do. For example one program can find all the image files that follow certain pattern, and the next convert them into some other format.

By running any downloaded program in a terminal simply give it permissions to execute by running: chmod a+x "/home/joe-doe/Downloads/hack-me.sh"

Then execute the program by typing its full directory inside quotation marks: "/home/joe-doe/Downloads/hack-me.sh"

es20490446e avatar Dec 15 '18 03:12 es20490446e

@Sk8erboi84 Python programs have the difference that they aren't full programs by themselves, but rather another program called the interpreter does the real job by reading the python file in real time.

So for running a python program you have to run the interpreter instead, indicating to it the python file to be run: python3 "/home/joe-doe/Downloads/hack-me.py"

es20490446e avatar Dec 15 '18 03:12 es20490446e

@Sk8erboi84 For knowing how to operate any other terminal program simply type or google: man program

For knowing which program does such thing, you will need to google it. Including "bash" or "terminal" in the search usually helps.

es20490446e avatar Dec 15 '18 03:12 es20490446e

I'm actually dying of laughter

Why did someone not just rm * this dudes system ^_^

jkid291 avatar May 08 '19 12:05 jkid291

@jkid291 That's not very nice :^( Besides it's more fun to let then run around using a system running everything as a root user thinking they're invincible to haxoring because "linux doesnt get viruses"

NoahGWood avatar May 08 '19 13:05 NoahGWood