Login Register






Thread Rating:
  • 0 Vote(s) - 0 Average


What kind of all C programming tutorials do you want to see posted here? filter_list
Author
Message
RE: What kind of all C programming tutorials do you want to see posted here? #11
(02-05-2019, 12:55 AM)darkninja1980 Wrote:
(02-05-2019, 12:42 AM)sunjester Wrote:
(02-05-2019, 12:35 AM)Confidential Wrote: There's A LOT more stuff that can be written in C other than Unix, lol. Unix isn't the only OS that was written in C, or at least had something to do with it. There's a lot of stuff on Windows that was written in C and then there's Linux, which was almost entirely written in C. In fact, there was a point in time where pretty much everything was written in C, lol.

while all of that is true it doesn't negate the fact that it's much easier to write keyloggers with c++ than it is with c. It's much easier to use the WinAPI with c++ than it is with c.

About is C# programming?

C# .NET makes it very easy to create hacking tools

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #12
(02-05-2019, 12:42 AM)sunjester Wrote:
(02-05-2019, 12:35 AM)Confidential Wrote:
(02-04-2019, 05:46 PM)sunjester Wrote: hacking tools are more than likely going to be coded in c++ rather than c, due to the winapi. however, if the tools are focues on unix, c might be a better solution.

There's A LOT more stuff that can be written in C other than Unix, lol. Unix isn't the only OS that was written in C, or at least had something to do with it. There's a lot of stuff on Windows that was written in C and then there's Linux, which was almost entirely written in C. In fact, there was a point in time where pretty much everything was written in C, lol.

while all of that is true it doesn't negate the fact that it's much easier to write keyloggers with c++ than it is with c. It's much easier to use the WinAPI with c++ than it is with c.

Even though what you're saying is also true, there's only a few things that are more simple to be written in C++. I think you're aware, but C++ is obviously a lot more of an advanced language than C, since C++ is pretty much C, but far more advanced. I mean, C++ only exists because of C anyways, since C is what C++ started to be developed with in the beginning. In comparison of the two, C is actually the one that should be the more simple language, which is why that's what C is mainly used for nowadays (simplicity/minimalism).
(This post was last modified: 02-05-2019, 01:01 AM by Confidential.)

[+] 1 user Likes Confidential's post
Reply

RE: What kind of all C programming tutorials do you want to see posted here? #13
(02-05-2019, 12:57 AM)sunjester Wrote:
(02-05-2019, 12:55 AM)darkninja1980 Wrote:
(02-05-2019, 12:42 AM)sunjester Wrote: while all of that is true it doesn't negate the fact that it's much easier to write keyloggers with c++ than it is with c. It's much easier to use the WinAPI with c++ than it is with c.

About is C# programming?

C# .NET makes it very easy to create hacking tools

great point of view.
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #14
If your still on this bro, kindly make a post about C traversing it's own PE file and explaining it one-by-one. I am very interrsted.

Pls dont make any "malware" in C# as I believe it is purely crap and have no place in hacking field at all (IMHO). what I mean is, you srsly gonna ask your victim first to install .NET x,x b4 "hacking" him/her?

And about the C and C++ convo above, I would rather do things in C than in C++. C is like, a one step higher than asm, it's just like "an easier assembly". C++ is, well, ghey, I dont find any other reason why would I use it, just because it's "easier"? just because you can write code easier? I would say crap. In C, you know almost everything that is happening. just like you do on asm. on C++, as long as i lt compiles, then it runs. I'm not saying C is better than C++ though, but it's just my opnion.

Cheers.
(This post was last modified: 04-14-2019, 05:36 PM by dr.franc.)

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #15
(04-14-2019, 05:35 PM)dr.franc Wrote: If your still on this bro, kindly make a post about C traversing it's own PE file and explaining it one-by-one. I am very interrsted.

Pls dont make any "malware" in C# as I believe it is purely crap and have no place in hacking field at all (IMHO).  what I mean is, you srsly gonna ask your victim first to install .NET x,x b4 "hacking" him/her?

And about the C and C++ convo above, I would rather do things in C than in C++. C is like, a one step higher than asm, it's just like "an easier assembly". C++ is, well, ghey, I dont find any other reason why would I use it, just because it's "easier"? just because you can write code easier? I would say crap. In C, you know almost everything that is happening. just like you do on asm. on C++, as long as i lt compiles, then it runs. I'm not saying C is better than C++ though, but it's just my opnion.

Cheers.

well why I am talking about malware right. Because of reverse engineering and also malware analysis job.
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #16
WINAPI was coded in C and was written for C also the whole windows is written in C and is recommended that C is used for writing drivers. Also how do keyloggers in C++ are easier ? C++ is bloated with stuff you don't need and forces you to learn bad habits and bad designs. I never found advantage of C++

EDIT: Sorry if i sound toxic but I have been in so many debates is C++ is better than C or vice versa. VIVE IL C!
(This post was last modified: 04-20-2019, 09:05 PM by IsBadWritePtr.)

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #17
I think a tutorial over PE or ELF structures would be great, example creating your own GetProcAddress, injecting code in random processes, relocating images, querying all running processes, something with sockets, named pipes, mutans, critical sections, spin locks, converting text to string, opening and editing registers key, listing all files in hard disk, file shredder, wring directly to the screen, starting process, dumping process image, fast memory alignment would be very easy, SIMD, suspending processes, i can go forever! I think is should be something simple and not crazy since not everyone is expert and might just get confuse and get bored
(This post was last modified: 04-20-2019, 09:44 PM by IsBadWritePtr.)

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #18
(04-20-2019, 09:17 PM)IsBadWritePtr Wrote: I think a tutorial over PE or ELF structures would be great, example creating your own GetProcAddress, injecting code in random processes, relocating images, querying all running processes, something with sockets, named pipes, mutans, critical sections, spin locks, converting text to string, opening and editing registers key, listing all files in hard disk, file shredder, wring directly to the screen, starting process, dumping process image, fast memory alignment would be very easy, SIMD, suspending processes, i can go forever! I think is should be something simple and not crazy since not everyone is expert and might just get confuse and get bored

thanks for your input.
My IT skills that I know perfect is SQL, HTML ,css ,wordpress, PHP.
coding skills that I know is Java, JavaScript and C#

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #19
Hey, have you made the presentation on PE structures? Where I can find it?

Reply

RE: What kind of all C programming tutorials do you want to see posted here? #20
(09-15-2020, 12:16 PM)HeidyD Wrote: Hey, have you made the presentation on PE structures? Where I can find it?
The OP hasn't been active for over a year, and It doesn't look like he'll be returning.
[Image: AD83g1A.png]

Reply







Users browsing this thread: 3 Guest(s)