VS 2008 - Anti-Cheat Engine
Jan 30, 2010
I wanted to get some insight from you all on if an Anti-Cheat Engine is possible to create in VB. I know that if it can be made, it would be a long and arduous task, but well worth it.
I'd also like to know what features I would have to implement for it to be a good anti-cheat engine.
Since there would be no GUI, would I just make it as a service? or would I make it as a normal app without a GUI? I think if I make it as a service, the User could just turn it off.
The engine itself would be for a C++ game.
View 10 Replies
ADVERTISEMENT
Mar 8, 2011
I just want to ask if what is better to do, if I want to detect a certain program that uses cheat? Do I need to use a Process to kill or GetModuleHandle?, and give me some advice and some simple codes or hard core samples, for me to analyze what is the best way...
[Code]...
View 3 Replies
Aug 30, 2009
I want to change my label1 in vb.net by cheat engine. My label start at 100 and a button makes it smaller, like this:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Label1.Text = Label1.Text - 1
End Sub
How would I do this?
View 9 Replies
Jan 4, 2011
I found with cheat engine the adres of the code the enables and disables a checkbox in another program ( value 0 and 1)But which code will this be to make a vb.net program of it
View 3 Replies
Sep 7, 2009
I have a set of programs I want to change the memory of, is there any way in which I can similar to cheat engine to change a programs memory?
View 15 Replies
Nov 12, 2010
Is there a way to code in BASIC a speedhack like that found in Cheat Engine? It changes the speed of a certain process or window. Functions like timeGetTime, queryPerformanceCounter..
View 6 Replies
Oct 13, 2009
i am trying to write a little program that checks for a process and kills is.here is the
Dim p As Process = Process.GetProcessesByName("Cheat Engine")(0)
p.CloseMainWindow()[code]...
My problem is it�s woking ,yes if the programm ,,Cheat Engine" is running the process is getting killed.But if the program is not running my program crashes.
View 5 Replies
Oct 31, 2009
Are there any good websites that would teach me how to make a anti-virus and anti-spyware scanner in vb 2008 express
View 2 Replies
Apr 21, 2009
I was thinking you could have a database with all the Viruses then it runs through the system and checks for any.
View 1 Replies
Sep 24, 2010
I'm try to make a simple small Anti-Virus application. This is not for commercial use. Just to test it, and maybe learn something that will help me in the long run.First, please don't reply by saying "C#" or "C++" is suggested for such as task.This is just a test application. Lets start with simple stuff such as "virus signature"I found this example: Which i believe reads the file, and checks for the sample signature.
VB.net
Function detect() As Boolean
Dim file() As Byte = {1, 2, 3, 4, 5, 6, 7, 8, 9} 'sample file
Dim virus() As Byte = {4, 5, 6} 'sample signature
[code]....
Third, then what i read was that i have to get arbitrary string of bytes as the signature.Which i needed to use hexadecimal editor to view such data.how can i detect virus file, from normal file.
View 10 Replies
Aug 12, 2010
The server response was: 5.5.1 Unrecognized command. p14sm1462998ybb.9I'm using AVAST, but I need a solution that will work for all anti-virus programs.In Avast, there is a setting to deactivate the shields for 10 minutes. With the shields down, my email sends successfully, but this leaves my computer with no protection for that 10 minutes
View 4 Replies
Oct 20, 2010
I was thinking of making a anti-file duplication system for my PC. I feel that i have a lot file duplicates so finding them would be nice.
View 12 Replies
May 11, 2009
I made a program to cheat at scrabble/word games. I can find words that "start with" a group of letters, "end with" a group of letters, or "contain" a group of letters in the middle. Furthermore, I can enter all my letters, and look for all the words that contain those letters. I can even enter a "*" for a blank tile (in Scrabble) and it will try all the possibilities for the blank tile.
What my program doesn't do is find all the subanagrams. For example, if I enter the letters "BNAG", my program would find only 4-letter words. I want it to also find all the 2- and 3- as well as 4-letter words.
What's the best logic/algorithm for grouping my letters into groups of 2, 3, 4, 5, etc.?
View 2 Replies
Feb 19, 2010
I'm looking for a walkthrough to help me design/develope a simple Blog that has the following parameters:Logon Screen Authentication Membership --> Email Lost Password.Simple Treeview like structure Topic-> Multiple Posts (2) levels deep only Historic calendar in right banner or someplace.Search Feature By (Topic, Username, Entry Date...etc)Does anybody know where I can find guidance otherwise left to my own devices this could take me a while, be nice to have at least a solid starting point in the correct direction.
View 2 Replies
Nov 19, 2009
Are there any known sofware approaches to anti-keylogging,that defeat both hardware and hook based loggers? While I was thinking about my next article, and the current ones, something dawned on me, that I had started before but never got to finish.After doing some research I verified that an On-screen keyboards, avoids most if not all hardware loggers, but the consensus is that their messages can still be hooked and stolen.Well maybe not so fast....
However, in my sendkeys article,the program could identify which keys were sent by my module, versus some other source.I used the integer -11, in the getextrainfo param, so that in my hook, I could know to allow my simulated keys, and block others that may interfere. Works great. I just used -11 for the heck of it.So, the idea is that we don't have to use -11.A sequence of random numbers could be generated by the osk.This provides some anonimity, to start with.But, the clincher is that when our user keys are detected by our osk(ourself basically), we simply insert 0-5 random keys, flooding the enemy logger with useless information in the que. Bingo!Sure they logged your keys, but can they read em? Nah.
The zero through five would not be fixed, but fluxuating, so it's not equidistant.I just picked them so as not to over flood the que for no reason. That is enough to obsure the password being typed.
View 5 Replies
Jul 14, 2009
I'd like to make a program similar to Forensics Anti-Executable...Except i know of some methods like the registry method, but i see that there are many vulnerbilitys and i'd like to know how to make it wheere it cheacks with my app if its ok to execute the program trying to run...like if i had this program running and i tryed to run notepad it would give you a dialog requesting for a password and login. also have this work with the registry like if an installation is creating a new key or editing or deleting a regestry entry to notify and ask for permission.
I just have ideas of how i want my program to run but i dont have a clue to how to do it...I also am planning on making this a windows forms application. [URL]
View 7 Replies
Sep 1, 2011
im creating an anti keylogger using on-screen keyboard and its work. but the problem is keylogger still can captured the keystroke. So i want to know what code should i add in my program. this is my code so far
[Code]...
View 2 Replies
May 23, 2011
the Background of my form is a image and the text very big. when it is bigger it doesn't look good how do i apply Anti-aliasing on the text so that it will look good?
View 8 Replies
Aug 16, 2011
In Reporting Service, I need to have a vertical, starting at bottom, bottom-to-top, horizontally middle aligned text.The only way to do this is to create an image in code, and set this image into the title column.See the code below.Basically, it works fine, just that the anti-alias quality is pretty crappy.Is there anything I can do to improve it ?The vertical text is somehow pale, and not full black, and also there is smearing all around the text, in the background color.As well as it appears bolder than the text on the left, but both have format arial, size 8, bold I've tried all other values of System.Drawing.Text.TextRenderingHint.*, as well as no anti-alias at all but the current one seems to be the least crappy.I've also tried to change the image format, to no avail:
Function LoadImage2(ByVal sImageText As String, ByVal sImageTextMax As String) As System.Drawing.Image
sImageTextMax = sImageTextMax.PadRight(15)
Dim iFontSize As Integer = 8 '//Change this as needed
[code]....
View 3 Replies
Sep 23, 2010
I have code that for a module that prevents csrf attacks by attaching a token to each page. The code is in C#. Can ayone change this to vb for me. I have tried using a converter but the the code produced doesnt work.[code]...
View 3 Replies
May 14, 2010
give me anti virus code for vb.net
View 1 Replies
Aug 22, 2009
Would it be possible to make an anti virus program in vb?
View 2 Replies
Dec 16, 2009
Is it possible to make an anti-virus in vb? Like for example the ability to scan through many files and find the memory encryption of each. (What i meant was like 442FSET5, Something like that). And the possibility to remove all files related to the specific virus or code?
View 1 Replies
May 2, 2011
I am trying to make a Anti-virus program. I know how Viruses work and how anti-viruses work but i don't know how to make them. So if anyone can give me a Anti-virus program sample in VB if can. (I don't really work with C#, C++, C)
View 2 Replies
Dec 3, 2008
how can i make anti virus software in .net?
View 12 Replies
Jan 26, 2009
give me the source code for antivirus i just want a hint and i can finish the rest?
View 14 Replies
Sep 12, 2009
I'm developing a new Anti-Virus with a more friendly interface. I looked on youtube, and i followed the example of a Fake Av, but i'm making it real, with scaning options. So, down are some use-full informations,before asking:It's a three forms application, so down i'll post the hole code, for future askings:Form 1:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Timer1.Start()
End Sub
[code]....
So, when i choose a drop-down option from the combobox and hit scan key, the AV will scan the listed files, and also show to a listbox in the 2nd form, when i hit clean viruses. It's a little bit complicated, it hink, but it must work. Another problem is that, the timer isn't setted for when fnishing scanning the system files, but is setted after a period of time. I want it, to Stop when the AV finsihed scanning dor the suspicios files and folders, if they exist.
View 8 Replies
Jun 6, 2012
"how to do anti-bypass firewall using Service"
some way bypass the firewall, such as using : software Ultrasulf , Proxy-Server , Web-Proxy
In this case , i will anti-bypass firewall on Proxy-Server and Web-Proxy , i will write a services in window
I think it as same : First , capture package with IP-Address , then request from proxy-server . Second ,very importanly , in here , we compare with IP-Add is truth , if IP-Add not truth , at list Block IP-Add , else accept to request to website
View 1 Replies
Sep 14, 2009
I have a program that will let you open a certain table in the database and query it on a child form in a MDI parent form. Of course the child form is a new instance of an existing form.The thing I want to do is that the opened table in the child form cannot be reopened again in the other child form. So I did was to create a childform name on every new instance of a childform depending what is the name of the table.
The first thing I did to do this restriction is to put the names of the opened table to an public array and when the user tried to reopen the table, the program will check if the childform name is already existing... and if it exist it will not let the user to open the table in new childform.When the childform is close it will erase it's name to the public array. And it can be open again.If you don't understand what I want to do this is the situation for example in a microsoft office when a word document file was open it will be put in a childform, and when the user tried to open the word file again and still the word file is open in the microsoft word the application will tell it's user that the word document file is still open.
View 3 Replies
Jan 28, 2009
I'm making a anti hack for a game, and i want to kick one that is connected on game and deny it from connect again.
View 2 Replies