google-site-verification: googlebaca44933768a824.html [C#] Detectable? - Old Royal Hack Forum

Announcement

Collapse
No announcement yet.

[C#] Detectable?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    [C#] Detectable?

    I've already asked this on the cheat engine forum, but more than 1 opinion would be usefull :d

    k here goes,

    So I know if you freeze the sv_cheats adress and do mat_wireframe 3 it's undetectable. But I made a C# hack to do the exact same thing.

    Code:
    using System;
    using System.Diagnostics;
    using ProcessMemoryReaderLib;
    
    namespace CSS_Wallhack
    {
    	class Program
    	{
    		static void Main( )
    		{
    
    			string cmdInput;
    			
    			Console.WriteLine("CSS Wallhack by Lynie");
    			Console.WriteLine("-----------------------------------");
    			Console.WriteLine("         sv_cheats freezed         ");
    			Console.WriteLine("-----------------------------------");
    			Console.WriteLine( );
                Console.WriteLine("Type in "wall" to enable/disbable the wallhack");
    
                ProcessMemoryReader pReader2 = new ProcessMemoryReader();
    
                Process[] ProcessSnap2;
                Process hProcess2 = null;
                ProcessSnap2 = Process.GetProcesses();
    
                IntPtr sv_cheats_adress = (IntPtr)0x2051E744;
                byte[] sv_cheats_value = new byte[4];
    
                int store_sv_cheats = 0;
    
                sv_cheats_value = BitConverter.GetBytes(1);
    
                for (int n = 0; n < ProcessSnap2.Length; n++)
                {
                    if (ProcessSnap2[n].ProcessName == "hl2")
                        hProcess2 = ProcessSnap2[n];
                }
    
                pReader2.ReadProcess = hProcess2;
                pReader2.OpenProcess();
    
    			while(true)
    			{
    				cmdInput = Console.ReadLine( );
    				if (cmdInput == "wall")
    				{
    					if (Memorynub.freeze)
    					{
    						Memorynub.freeze = false;
    						Console.WriteLine("Wallhack Disabled");
    					}
    					else
    					{
    						Memorynub.freeze = true;
    						Console.WriteLine("Wallhack Enabled");
    					}
                        Memorynub.wireframe_wallhack(Memorynub.freeze);
                        pReader2.WriteProcessMemory(sv_cheats_adress, sv_cheats_value, out store_sv_cheats);
    				}
    			}	
    		}
    	}
    	class Memorynub
    	{
            public static bool freeze = false;
    
    		public static void sv_cheats_freeze( )
    		{
    
    		}
    		public static void wireframe_wallhack(bool g)
    		{
                ProcessMemoryReader pReader = new ProcessMemoryReader();
    
                Process[] ProcessSnap;
                Process hProcess = null;
                IntPtr wireframe_adress = (IntPtr)0x204EF37C;
                byte[] wireframe_value = new byte[4];
                wireframe_value = BitConverter.GetBytes(3);
    
                ProcessSnap = Process.GetProcesses();
    
                for (int n = 0; n < ProcessSnap.Length; n++)
                {
                    if (ProcessSnap[n].ProcessName == "hl2")
                        hProcess = ProcessSnap[n];
                }
    
                pReader.ReadProcess = hProcess;
                pReader.OpenProcess();
    
                int store_wireframe = 0;
    
    			if (g)
    				pReader.WriteProcessMemory(wireframe_adress, wireframe_value, out store_wireframe);
    		}
    	}
    }
    Will this be detectable or not?

    #2
    ya its detected...vac checks if its written in c# or c++...gabe dont like c# so if its written in c# they ban you!
    I 0x90 you!

    Comment


      #3
      Originally posted by aVitamin View Post
      ya its detected...vac checks if its written in c# or c++...gabe dont like c# so if its written in c# they ban you!
      ^^ who asks if there code is undetected lol and that made my sig vit

      Comment


        #4
        Originally posted by lynie
        So I know if you freeze the sv_cheats adress and do mat_wireframe 3 it's undetectable.
        But I made a C# hack to do the exact same thing.
        Will this be detectable or not?
        explains everything lol
        I 0x90 you!

        Comment


          #5
          LOL epic thread.

          Comment


            #6
            K, so no kidding :p, c# is ALWAYS detectable or were you using sarcasm? (soz :s :p)

            Comment


              #7
              no c# isnt detected...only asm is.
              I 0x90 you!

              Comment


                #8
                And .exe files. Are they detected? :o

                i search a good source code for Dods with aimbot and other stuff i know this is the same engine as counter strike source but css hacks are not work in dods.

                Comment


                  #9
                  Originally posted by floxy View Post
                  And .exe files. Are they detected? :o
                  yes, but not all

                  Originally posted by Dead
                  8 digit steam acount willing to trade for any steam acount that everey one knows as a hacker lmao or BANNED ON ALOT OF SERVERS.

                  made by kimmi

                  Comment


                    #10
                    hl2.exe is one of the detected ones...
                    I 0x90 you!

                    Comment


                      #11
                      dammit. This one is always shown in my task manager :/

                      i search a good source code for Dods with aimbot and other stuff i know this is the same engine as counter strike source but css hacks are not work in dods.

                      Comment


                        #12
                        then kil it as fast as you can...otherwise ull get banned.:smiley_264:
                        I 0x90 you!

                        Comment


                          #13
                          Originally posted by aVitamin View Post
                          then kil it as fast as you can...otherwise ull get banned.:smiley_264:
                          That made my day

                          Comment


                            #14
                            He is obviously kidding or else he needs some lessons in common sense.

                            hl2.exe is not detected, explorer.exe is.

                            Comment


                              #15
                              of course is hl2.exe and explorer.exe NOT detected :D
                              hl2.exe is ur css game <-- how is the game detected? kill process = kill game..
                              explorer.exe is ur desktop <-- how is the desktop detected? kill process = kill desktop..

                              pls dont fuck with the noobs, some of them are new and cant know this..

                              Comment


                                #16
                                u should always end process explorer.exe, I do when I'm playing a game/ watch movies/ etc. as it takes stress off my CPU

                                Skilled in HTML, XHTML, Photoshop, GIMP, MS Paint, Halo PC Modding
                                Learning Fortran, C, C++, and maybe CS:S Modding

                                Comment


                                  #17
                                  Originally posted by crisis View Post
                                  u should always end process explorer.exe, I do when I'm playing a game/ watch movies/ etc. as it takes stress off my CPU
                                  Lol, if you have a good cpu you dont need to do this.

                                  Comment


                                    #18
                                    Nah, explorer is a leecher... Also happens to be the most favorite place for viruses to inject themselves. Some viruses don't work if explorer.exe is dead ^^

                                    explorer.exe is not the desktop, unless by desktop you mean the entire windows GUI?

                                    BTW that c# code got a nice idea, although c# is a piece of shit... use c/cpp but not that Microsoft shit.

                                    Comment


                                      #19
                                      yeah lol like svchost.exe is a virus xD damn this thread owns my brain

                                      Comment

                                      Working...
                                      X