Programming › Re: Xmas Codes by Akanimoh113(m): 9:07pm On Jan 01, 2021 |
Karleb: Hey bro. I've seen your message. Sadly, I can't help you. Why...  |
Programming › Re: Xmas Codes by Akanimoh113(m): 8:53pm On Jan 01, 2021 |
Karleb: I decided to write some Xmas codes the way I'd love almost every code (PHP) be written.
Happy holidays! Hello |
Business › Re: How Much Cash Entered The New Year With You? by Akanimoh113(m): 8:52pm On Jan 01, 2021 |
Brainiac12: 16m BTC 8m cash  Hope I make massive this year
So help me God
BTW!!! HAPPY NEW YEAR This man I don beg am tire Na Phone I need oo Only phone fa |
Romance › Re: DROP YOUR NEW YEAR WISH!! by Akanimoh113(m): 8:47pm On Jan 01, 2021 |
I wish to get my self a new phone so that I Can be making money  |
Programming › Re: Should You Study Computer Science To Learn How To Code? by Akanimoh113(m): 8:43pm On Jan 01, 2021 |
Karleb: Most people who play down on the importance of CS degree don't have one.
Most CS degree gate keepers are people with CS degrees.
At least, FAANG companies have established the fact that what's important is your ability to learn. Please check your PM |
Programming › Re: Should You Study Computer Science To Learn How To Code? by Akanimoh113(m): 4:52pm On Jan 01, 2021 |
EvilSec: Well said. Boss Happy New Year |
Programming › Re: Xmas Codes by Akanimoh113(m): 12:57pm On Jan 01, 2021 |
Karleb: I've replied you. Boss.... Happy New Year  |
Programming › Re: Xmas Codes by Akanimoh113(m): 11:17pm On Dec 31, 2020 |
Karleb: I've replied you. I've replied back too |
Programming › Re: Xmas Codes by Akanimoh113(m): 10:21pm On Dec 31, 2020 |
Karleb: Send me a pm. I've sent you a mail |
Programming › Re: Xmas Codes by Akanimoh113(m): 10:02pm On Dec 31, 2020 |
Karleb: Send me a pm. I've sent you a Pm |
Programming › Re: Xmas Codes by Akanimoh113(m): 9:35pm On Dec 31, 2020 |
Karleb: Here, on this thread. Like privately... |
Programming › Re: Xmas Codes by Akanimoh113(m): 9:04pm On Dec 31, 2020 |
Karleb: I decided to write some Xmas codes the way I'd love almost every code (PHP) be written.
Happy holidays! How do I contact you? Please |
Phones › Re: Free VPN by Akanimoh113(m): 8:33am On Dec 31, 2020 |
|
Phones › Re: Free VPN by Akanimoh113(m): 7:36am On Dec 31, 2020 |
Asianjollof007: Big man, you no want make i learn from you abi.
Okay, what if i help you find hacker? If you can do that... You'll get a reward from what I want him to do for me. |
Phones › Re: Free VPN by Akanimoh113(m): 7:17am On Dec 31, 2020 |
Asianjollof007: I know, i fit learn from you yunno Right now... I don't know anything If the hacker can do what I need him to do. Money will come out Then tend to pay him And also learn something from him too  |
Phones › Re: Free VPN by Akanimoh113(m): 7:03am On Dec 31, 2020 |
|
Programming › Re: POC Of Bypassing Anti Debugging With Some Dirty Code I Wrote by Akanimoh113(m): 9:18pm On Dec 30, 2020 |
EvilSec: You've been tailing me for quite a while. Ask me what you want here, if your request is not irrational, then maybe we'll take the chat to somewhere else. I wanted you to help me out, I really need a smartphone Lumia640 LTE is ancient history and a total headache for me. Forgive Me If My Questions May Sound StupidFirst QuestionSo... I came up with an Idea, can you created a software that's able to predict the outcome of matches at mostly 99.9%. So that people could earn profit from betting. Second QuestionCan you find a Loop hole for Zoom Soccer on Bet9ja where you can know which games to pick that is a Guaranteed Win Third QuestionIn the photo below, is it possible to reveal the hidden features on the ticket that is covered with '400 Shares' and '200 Likes' .
|
Phones › Re: Free VPN by Akanimoh113(m): 8:48pm On Dec 30, 2020 |
Me I need a hacker |
|
Tech Jobs › Re: . by Akanimoh113(m): 5:08pm On Dec 30, 2020 |
theFilmtric: Akanimoh113
theFilmtricsay Should I send you mail Or can I have your number |
|
Programming › Re: POC Of Bypassing Anti Debugging With Some Dirty Code I Wrote by Akanimoh113(m): 1:54pm On Dec 30, 2020 |
EvilSec: My last topic was how to get started writing your own malwar3, now let's talk about how Malwar3 authors have always looked for new techniques to stay invisible. This includes, of course, being invisible on the compromised machine, but it is even more important to hide malicious indicators and behavior during analysis. make the post-detection analysis more difficult, threat actors use various anti-analysis techniques, one of the more common ones is Anti-Debugging. Threat actors have proven to be more innovative not only in the malwar3 they are creating, but also the techniques they are employing in order to evade detection and analysis by malwar3 analysts and products. Anti-debugging, therefore, poses a hindrance for malwar3 analysts as it can prolong the process of being able to reverse engineer the code and thus make it more difficult to decipher how it works. Once the malwar3 realizes that it is running under a debugger, it can adjust its usual code execution path or modify the code to provoke a crash, which then hinders the analysts’ attempts to decipher it, all the while adding time and additional overhead to their efforts. There are many methods to prevent Debugging. In this post I will show some neat and simple method.
Basic Logic of this process; If there is a Tracing operation with Ptrace, it is to detect it using ptrace.
Considering that there is a control like this:
//EvilSec #include <stdio.h> #include <sys/ptrace.h>
int main() { if (ptrace(PTRACE_TRACEME, 0, 1, 0) < 0) { printf("Debugging noticed, Screw You!\n" ) ; return 1; } printf("Normal Execution\n" ) ; return 0; }
Here we see that the ptrace system call checks if the argument named PTRACE_TRACEME is a child process for Debugging.
If the Process is traced; printf("Debugging noticed, Screw You!\n" ) ;
If not We get the message: printf("Normal Execution\n" ) ;
How Can We bypass The Control Made In This Situation? The solution I found for this is using LD_PRELOAD; Hijacking the ptrace () Function. First of all ptrace (); We’re creating a fake library to replace it as follows: > long ptrace(int request, int pid, int addr, int data) > { > return 0; > }
After compilation, we assign the resulting library location to the LD_PRELOAD environment variable. and then when we run it with gdb printf (“Normal Execution\n” ) ;
We get This message. So we successfully bypassed Control. Please How do I contact you Can I get your WhatsApp number... |
Phones › Re: Free VPN by Akanimoh113(m): 1:20pm On Dec 30, 2020 |
heydenrey: email me ;- heydenreiss@gmail.com Sorry are you a hacker |
Programming › Re: Senior Software Programmers Needed Urgently For Remote Opportunities by Akanimoh113(m): 1:18pm On Dec 30, 2020 |
Karleb: What is this? Sorry... R u a hacker? |
|
Romance › Re: Tag Local Internet Scammers On Nairaland Disguising As Ladies by Akanimoh113(m): 6:23am On Dec 30, 2020 |
|
|
|
|
|
Romance › Re: Introduce Yourself With What Almost Killed You (photo) by Akanimoh113(m): 6:42am On Dec 29, 2020 |
Brainiac12: Bro giveaway don pass you no dey lucky Baba you, you know say I need new phone I no fit continue with this Windows phone guy. Abeg just help me I take God Beg you |
Romance › Re: by Akanimoh113(m): 12:16am On Dec 29, 2020 |
5hanklee: If you never fûck till blood commot your babe Toto, forget am, you no Sabi fuçk.  You be Scritch Aswear U wan off her ni?? |