C0dEStRiP Posted February 7, 2006 Posted February 7, 2006 University of GuadalajaraInformation Sistems General Coordination.Culture and Entertainment WebJune 12th 1995Copyright
yamraaj Posted April 23, 2006 Posted April 23, 2006 Another nice tut http://www.xs4all.nl/~smit/asm01001.htm#index1
Guest Tundra Posted April 23, 2006 Posted April 23, 2006 Here's another good one, Goppit's Assembly for Crackershttp://omega.intechhosting.com/~access/ART..._Goppit_v11.rar
yamraaj Posted July 18, 2006 Posted July 18, 2006 Microsoft MASM Programmer's Guide: Assembly-Language Development System v6.1 Old but very useful http://doc.ddart.net/asm/Microsoft_MASM_Programmers_Guide_v6.1/
nakfreeajer Posted July 19, 2006 Posted July 19, 2006 I have the book about few years back. Here u can download few chapter http://kipirvine.com/asm/4th/sampleChapters/index.htm It may help u 2 understand the fundemental of assembly language for intel chipset (I think the most used chipset in the box nowday)
Fish3r Posted December 15, 2006 Posted December 15, 2006 (edited) Thanks all but the link for goppit is dead. Edited December 15, 2006 by Fish3r
mia Posted December 15, 2006 Posted December 15, 2006 The new link ishttp://arteam.accessroot.com/tutorials.html?fid=173mia....
yamraaj Posted December 28, 2006 Posted December 28, 2006 FPU Guide attached...Cheers SimplyFPU.zip 2
Fish3r Posted December 28, 2006 Posted December 28, 2006 FPU Guide attached...Cheers That's a tight one thanks
metr0 Posted July 4, 2007 Posted July 4, 2007 (edited) if i learn ASM i can make virus,then i can crack or unpack,and if i learn from ASM is it easy to understand unpacking tutorials am i right?that opinion is came from my friend i ask him to make a tutorial for me one on one in unpacking,but he refuse he told me that im gonna read and learn ASM first is he is right?in return to him im willing to pay to learn but he still insist that i have to read books of peter norton. Hm, imo, you're right in some points. Yes, Assembly is necessesary to learn how to crack (that includes unpacking, keygenning, whatever) - at least you've to know the basics. But i can't understand the 'virus-argument', you can code virii in (nearly) all available languages? Nevertheless, don't write virii, learn to crack. A better way to spend your time. xD Uhm, about the Peter Norton-Thing: I _never_ read any of his books, and it seems like it covers more aspects needed for virus writing (dunno... Norton, the security suite?). I myself never read a book of Peter Norton and I've no problems with that. But maybe they're interesting. Good luck, metr0 Edited November 24, 2007 by metr0
Fungus Posted July 4, 2007 Posted July 4, 2007 Don't write malware, malware sucks... and can land you in prison too. Why would you wanna do that? :/ Peter Norton wrote some excellent books on asm and dos programming, worth a look if you can find them, they are quite old now. But thick as a brick
Jatt Posted August 2, 2007 Posted August 2, 2007 hi guys, i m only familiar with ASM ,cuz i m from electronics branch , one day i search for cracking tools even dont know how to crack then i download olly from one site after some time i realize tht i need a tut to learn olly and cracking , then i search on cracking tutorials and i reached at tuts4you.com i grab some lena tuts , when i found it interesting then i read some books on vb , my experience says tht u should learn how ur processor works why it is 8bit ,16bit ,32bit ,64bit and more terms like registers, accumulator , interrupts, Accumulator, Flags ,stack pointer and program counter etc etc if u know how processor work ,it very easy to know wats going on at binary level (or hex level ) when u r reversing a app now if u r only familiar with ASM like me then u should learn about c , vb and many more languages if ya want make ur life bit easier thnx to SND and my teacher Lena151
hmi222 Posted March 6, 2008 Posted March 6, 2008 And here the interrupts!http://www.ctyme.com/intr/int.htm
HVC Posted July 16, 2008 Posted July 16, 2008 7 Program examples The program examples are missing.. Are you sure? Cause i found at least 11 of them at the bottom of the page, beneath the "6.2.3 Macro Libraries" chapter. The only thing they're missing is the anchor and the big neon sign.
Ac Posted July 17, 2008 Posted July 17, 2008 yeah the examples where there..only the anchor on top doesn't point you anywhere and there is no number 7.It ends on 6.2.3 Macro Libraries (and I thought it was part of the chapter)well, thanks anyways.. :cool:
ACiD RAiN Posted September 16, 2009 Posted September 16, 2009 This is very good. Thanks for the link dude! :]
Fizban Posted September 23, 2009 Posted September 23, 2009 Well, i started reading this tut and noticed a mistake.. i hope it doesn't have any more "Basic" mistakes in it 2.2.1.3 converting binary numbers to decimals: Mistake: Binary: 1 1 0 0 1 Decimal: 1*2^0 + 1*2^1 + 0*2^2 + 0*2^3 + 1*2^4 <--- Should be reversed Suppose to be: Binary: 1 1 0 0 1 Decimal: 1*2^4 + 1*2^3 + 0*2^2 + 0*2^1 + 1*2^0 = 25 and NOT 19 like the tut say.. Will edit this post if i find more mistakes..
kinhvaf Posted July 15, 2011 Posted July 15, 2011 http://oopweb.com/Assembly/Documents/asm/Volume/asm.htmThanks nice tuts.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now