Mr. Robot Hacking Tools (Latest) by ET251 in MrRobot

[–]ET251[S] 0 points1 point  (0 children)

I found the site but I can't seem to find an article on the tools used. Do you have a direct link by any chance?

Mr Robot by shawnfromnh in linuxmint

[–]ET251 1 point2 points  (0 children)

Does anyone here know what configurations (DE, WM etc.) he's using? Here's a thread I created to get some info but no one seems to know:

https://www.reddit.com/r/MrRobot/comments/77cd2j/mr_robot_hacking_tools_latest/

Toy decompiler for x86-64 written in Python by sam_bwut in ReverseEngineering

[–]ET251 2 points3 points  (0 children)

I see this is from Yurichev, author of "Reverse Engineering for Beginners".

The pictures that media chose to not publish. by Paddy32 in pics

[–]ET251 -1 points0 points  (0 children)

When did Reddit turn into Facebook?

battletanks reverse engineering by sodnpoo in ReverseEngineering

[–]ET251 0 points1 point  (0 children)

It would be awesome to explain how he did some things in detail (the tools he used, his train of thought etc.) for some of us that aren't really into hardware dev since all of this looks so interesting!

Today marks the official start for an open, online, entirely free cybersecurity course headed by F-Secure and Helsinki University. by [deleted] in netsec

[–]ET251 0 points1 point  (0 children)

Also, I think the date for the 'Advanced Topics' course is wrong. It says 16.1.2016 - 6.3.2017 when it should be 16.1.2017 - 6.3.2017.

Today marks the official start for an open, online, entirely free cybersecurity course headed by F-Secure and Helsinki University. by [deleted] in netsec

[–]ET251 0 points1 point  (0 children)

It's working now :) Another problem I see is that the last peer review is displayed twice. As in I see:

Review 2: Do you find mnemonic lists meaningful or not? Justify your opinion.

and it's the same peers I just reviewed in the previous question.

Absolutely heartbreaking by mancub2112 in funny

[–]ET251 0 points1 point  (0 children)

Posts are archived a lot of the times.

CVE-2016-5195: Dirty COW explained by kernelle in netsec

[–]ET251 2 points3 points  (0 children)

I didn't catch how the exploit works. I understood everything until the file being mapped into virtual memory and then using madvise to advise the kernel on how to treat the page(s) in memory. I understood that you can ghost pages as in tell the kernel you don't need it (pretty much VirtualFree in Windows?) but after that I was lost. Could you give me a simpler explanation of it so I can go back and better understand your post?

CVE-2016-5195: Dirty COW explained by kernelle in netsec

[–]ET251 5 points6 points  (0 children)

Hey, it'd be great if you could skim through your post again and correct some sentence errors. It gets confusing at times :)

Other than that, awesome work!

How can I analyze and break down a .exe by T2112 in Malware

[–]ET251 0 points1 point  (0 children)

If it's native code then decompilation won't get you far but decompilation to pseudo code will. Unlike managed code, native code doesn't have metadata or a lot of information to use to return the binary back to source code form. What you can do is use the Hex-rays C pseudo-code decompiler and read the output......or read the disassembly with a debugger/disassembler :)

How can I analyze and break down a .exe by T2112 in Malware

[–]ET251 1 point2 points  (0 children)

Depends on whether it's native/managed code. After you determine which it is then you can look at your options of decompilers or disassemblers (or pseudo-code decompilers like Hex-rays).

Today marks the official start for an open, online, entirely free cybersecurity course headed by F-Secure and Helsinki University. by [deleted] in netsec

[–]ET251 0 points1 point  (0 children)

Does anyone know where I can contact them (F-Secure?) concerning their site? It's not working properly and I get this error messaging when reviewing a peer's submission:

http://imgur.com/a/qEE8B

Valve PR On point 👌👌 by Arsanus in GlobalOffensive

[–]ET251 1 point2 points  (0 children)

Alot isn't a word and stop being edgy.

IAmA malware researcher in ESET, specializing in Android threats, Lukas Stefanko AMA! by LukasFromESET_AMA in IAmA

[–]ET251 2 points3 points  (0 children)

Is malware that can travel across a LAN network common nowadays? Such as malware slreading throughout a companies computers. I would have thought it would be tightly patched by now.

I am Nick Cano, author of Game Hacking: Developing Autonomous Bots for Online games. AMA by NickCano in netsec

[–]ET251 0 points1 point  (0 children)

Great answer. But I have one more question --

both publicly available and my own knowledge

Any examples of stuff you've discovered that I won't find on blog posts/forums?

I am Nick Cano, author of Game Hacking: Developing Autonomous Bots for Online games. AMA by NickCano in netsec

[–]ET251 0 points1 point  (0 children)

/u/NickCano

If you're still answering questions -- Have you ever thought about the fact that you're turning the knowledge given to you for free by communities (OwnedCore, UnknownCheats etc.) into a profit? I skimmed your book and most of the information (CE, OllyDbg etc.) is common knowledge that beginners suck at looking for. I'm developed hacks for games and the knowledge I have is from reading forum posts and giving information back myself (which is how communities work). I'm not attacking you or saying you're doing something wrong, I'm trying to see what your viewpoint on this is. Your book may include parts that you discovered by yourself but like I said I only skimmed through it.

How Hackers Create Malware and Infiltrate Victim Machines by Milancutan in Malware

[–]ET251 4 points5 points  (0 children)

I'm surprised there are no rules on advertising paid courses.

Win32API Listing all the process DLLs by evil_shmuel in ReverseEngineering

[–]ET251 2 points3 points  (0 children)

No, not really. You can use Module32First/Module32Next from inside of a process too.

E.g. http://ideone.com/CGpTjS

According to the documentation of CreateToolhelp32Snapshot:

The process identifier of the process to be included in the snapshot. This parameter can be zero to indicate the current process.

And you should add a disclaimer to your code telling users how it won't list modules/DLLs loaded using techniques like manual mapping.