Regarding Hash Values Of System Processes?
Mar 14, 2012
I have implemented a function that calculates the hash value of important system processes. I have a question that if new memory pages are created in the memory space of certain system processes wont their hash value change. Cuz the previously calculated hash values and after the memory pages are created are exactly the same.
View 12 Replies
ADVERTISEMENT
Aug 10, 2009
I'm trying to figure out a way to compare two "salted-hash" strings. How can I do this? I know that the salt is a random generated value that's appended to the plain text, then we just compute the hash of that new string.So how can I compare these two values? O_O (The new hash that the user hash written in a textbox and the hash stored in a database)
View 9 Replies
Sep 7, 2011
I have some problems with the SHA1 hash value of a string. I'm trying to send a file from a client written in VB.net to a server written in PHP. My problem is that when I pass the same string to VB.net and PHP, the SHA1 value calculated by VB.net is completely different from the value calculated by PHP.
For example, I want to encode a string in Base64 and then calculate the SHA1 Hash of the Base64 string. When the computer executes this task from the vb.net version and from the PHP version I get two different SHA1 values, even if apparently the Base64 encoded string is the same:
VB.net: 2E97A53B09C482A831540B532845BCAC79BFACCF
PHP: 350A2080264E2724D4BCBC521C35264D264A1DAF
I'm surely missing something, could you point me in the right direction and tell me what I'm doing wrong here?
[Code]...
View 1 Replies
Apr 1, 2009
I am writing a program that and like to implement data verification system. It needs to return a unique string for any value entered. My question boils down to: is it possible for an AES function to return the same value for two different entries? The source values will becoming from data held on a magnetic stripe card.
more details
I posted this through my phone originally, and I am now just getting back to this post.
I've been looking around the web and while reading Wikipedia's article on SHA, I see that SHA-2 (SHA-256/224, SHA-512/384) have no detected collisions (assuming the article is accurate/up-to-date). This is desirable. Any recommendations on what version of SHA-2 I should use?
View 5 Replies
Jan 5, 2010
I'm using a MySQL connector in VB .Net to execute a batch of SQL inserts. This is typically on the order of 5k statements and takes around 30 minutes to process. Unfortunately, when this process is running and I use a different application on the system, upon returning to the .net app it hangs and shows "not responding". In fact, as soon as I click anywhere else in the application (move to a different tab, for example) everything locks up.
Dim transaction As MySqlTransaction = sqlConnection.BeginTransaction()
For Each sqlCmd In (sqlCmdsCollection)
sqlCommand = New MySqlCommand(sqlCmd, sqlConnection)
[Code]....
View 3 Replies
Jun 7, 2012
i would like to scan all the processes(aplications) running in a system before starting my program. and also need to close some programs before starting my program.how to read all the processes ruining in a system one by one.
View 1 Replies
May 17, 2012
I am making a function of an application that when a function is called the application will close all processes that are owned by the user and were started after a specific point. My thoughts on this would be to trigger an event in my application every time a process is started and ended, and only if the processes is owned by the user, the event should get information (e.g. the process ID, name, etc) about that process and add or remove that information to/from an array depending on if the process starts or ends. Then when a function is called end all the processes in that array.
[Code]...
View 6 Replies
May 15, 2007
Given either the name or number of a system color, I would like to output the RGB values of that color.
Example:
strcolor = "ForestGreen"
or
[Code]....
View 4 Replies
Feb 24, 2009
I ran accross this piece of code that uses the System.Management to get the free space on a drive for ONLY logical drives on Hard disks drives. It does this by check the Mediatype. Anybody know where I can find a listing of the Mediatype values? I would like to modify this to get free space only from USB flash drives.
[Code]...
View 2 Replies
Jul 26, 2011
I'm working on a project that's going to be deployed via .NET on Windows and via Mono on Linux; the same data needs to be exchangeable between the platforms, including where platform A is Little-Endian and platform B is Big-Endian.Where text is concerned, I know ASCII/Unicode is natively Big-Endian, so there's no problem with that.Where numbers are concerned, I know that byte arrays have to be reversed on Big-Endian platforms to store the data in Little-Endian format.But what exactly is the 64 bit value output from System. Date Time.ToBinary?Is this a number representing the number of seconds elapsed since Jan 1 1970, is this some kind of serialized attribute that outputs some DotNET-recognizable value, or what?Does this byte array need to be handled differently in Big and Little Endian environments?It never hurts to try. In a worst case scenario, you'll learn from it.
View 7 Replies
Nov 16, 2011
I am at a bit of a loss at the moment. What I am basically writing is the password elements of a membership system. What I do is generate a random salt value, take the registered password, combine the two and then pass the new string through a function which will generate a SHAManaged 512 hash.
I then convert the hash and salt string into Byte arrays and store these in my database.The problem comes when I then compare a login attempt against the original value I am being supplied with a completely different hash for the password being presented by the user, even though it should be exactly the same.
Here is my code when someone registers their new account:
[Code]...
View 15 Replies
May 10, 2010
what the maximum and minimum values are for a Framework 4.0 System.Numerics.BigInteger
2 ^ x
or is it a
( 2 ^ x ) - 1 value?
View 2 Replies
Apr 6, 2009
I am making my project for this semester. I am making "System monitoring Tool" so i have make a GUI and also get the all parameters but one thing missing I have tried to find from different places but not found that is the "continues line" that represents the changing values of CPU usage along time. same like "windows task manager" shows.
View 1 Replies
Sep 30, 2010
I'm populating a custom dropdown list control on the fly that's tied to data grid using VB .NET 2008. The form will display all the manufactures when the edit button on the data grid is selected.
The dropdown I created works fine. However, when I try to populate the drop down with the respected manufacture values from the database, I only get a value of "System.Data.DataRowView" that being populated in the dropdown list as opposed to my values from the database.
Here's the basic code I use to first create and populate the drop down control:
<asp:DropDownList ID="Manufacturedd" Runat="server" DataSource='<%# m_ItrackerData.Tables("Misc_Manufacture") %>' SelectedIndex='<%# getSelectedManufacture(DataBinder.Eval(Container, "DataItem.Manufacture"))
%>'></asp:DropDownList>
[Code]....
View 1 Replies
Dec 14, 2010
I'm having a problem how to refresh the aplication so that the tray icons changes when reading a txt file that is actualized in 5 to 5 minutes.
Imports Microsoft.VisualBasic
Module Module1
Public Sub Main()[code].....
View 4 Replies
Aug 3, 2010
[Code]...
The garbage collector in .NET moves objects, so the object's address is not stable. How is Object's GetHashCode() method implemented?
View 1 Replies
Dec 1, 2010
I have an openfiledialog, I show the dialog and the user selects there file. How could I calculate the MD5 hash of the OFD.filename/file opened? Or calculate the SHA1, what ever is easiest.
PS: This is in Visual basic 2010 Express.
View 2 Replies
Nov 7, 2010
I know MD5 hashes have been asked about 1000+ times, but this question is slightly different.I am looking to find the true MD5 hash of an image, but without using a string for the file's location. I am looking to be able to call on the image inside of a picturebox rather than somewhere on my computer or the internet.
For example, I want to find the MD5 hash of an image inside of my picturebox.
If this doesn't make sense, please ask any questions you may have.
View 8 Replies
May 10, 2011
I've created a log in system using a database and query builder to return the correct values, however, once the users signed in I need to bring up the rest of their data from the same table in the database. How'd be the best way of going about this? I'm not sure whether the log in should be changed to use the primary key as well.
View 2 Replies
Dec 26, 2010
im creating a simple login / registrate form in visual studio 2008 anplant Hash and salt to my login and registrate forms, im using mysql to connect to a online mysql serverthis is my codes i ahve now
Form 1 - Login
Try
DB_Connect = New MySqlConnection()
[code].....
i really need this working, all works but nothing is encrypted
View 6 Replies
Feb 6, 2012
I have a page with a URL that includes a hash value (www.mysite.com/#123).What I want to do is use that value to determine what is displayed on the page - much like using a querystring.I am using the hash value because the content on the page can be changed client side (I am avoiding page reloads where possible) - if the user then links to another page and uses the back button to return, I need to use the hash value to display the page as it was when they left it.So I'm looking for an if statement that will look something like this:
[code]...
View 1 Replies
Mar 21, 2009
I would like to write a function GetHashCodeOfList() which returns a hashcode of a list of strings regardless of order. Given 2 lists with the same strings should return the same hashcode.
ArrayList list1 = new ArrayList()
list1.Add("String1");
list1.Add("String2");
[Code].....
I can first sort the list, then combine the sorted list into 1 long string and then call GetHashCode(). However sorting is a slow operation. I can get the hash of each individual string (by calling string.GetHashCode()) in the list, then multiplying all hashes and calling Mod UInt32.MaxValue. For Example: "String1".GetHashCode() * "String2".GetHashCode * ... MOD UInt32.MaxValue. But this results in a number overflow.
View 3 Replies
Apr 10, 2012
I have a function in VB.net that returns a password hash. I need to make a web interface to the same database and I'm not sure how to return the same hash in PHP. Does anyone know both languages enough to convert this to PHP?
Code:
Public Function GenerateHash(ByVal SourceText As String) As String
'Create an encoding object to ensure the encoding standard for the source text
Dim Ue As New UnicodeEncoding()
[Code].....
View 7 Replies
Oct 1, 2010
I am using the following piece of code (where sId is a Unique Id in our system) to generate Unique Hash value of 16 characters Max in length
Dim oMD5Hash As System.Security.Cryptography.SHA1 = System.Security.Cryptography.SHA1.Create()
Dim sHash As String =
[Code].....
View 12 Replies
Jun 7, 2012
I am having issues to hash with sha 1 salted in vb. I have an SMF forum and it uses SHA 1 salted to encrypt its passwords. I want to make a program which is only available to users who have registered in my forum so I have to create a login system in my program. The problem is that how do I hash to SHA 1 salted in vb?I have explained what I want to do a bit more in details below:User opens program >They login using their forum account details >Program hashes the PASSWORD the user has entered to SHA 1 salted >The program then connects with the forum's database and compares the password value > (The Username is checked first tho)
View 4 Replies
Dec 18, 2011
The code below allows a user to enter user name and password to log in to enter marks of students. SQL data reader verifies the user credentials from the database before authentication takes place. modify the code by salting and hashing the password.
Dim frm As New MarksEntryFrm
Dim flag As Boolean
flag = False
[Code]....
View 3 Replies
Apr 1, 2011
I am porting over some code from .net (vb) to php and I came across some md5 hashing that I can't reproduce in php. In the .net one there are two functions one uses UTF-8 encoding and the other uses Unicode encoding. The output is a different hash when passed in a string
// First function (returns GUID)
Dim oHasher As Cryptography.MD5 = Cryptography.MD5.Create()
Dim oEncoder As New System.Text.UTF8Encoding()
Dim csData() As Byte
[Code]...
but they both produce the same result. Is it possible to produce the same results in php with md5 hashing?
View 1 Replies
Jul 19, 2011
How do I retrieve a hash value when the value itself is an object.I am giving an example here
dim ht as new hastable
dim person as clsperson
ht.add(0, new ("AAA", "16", "23425345")
ht.add(1, new("BBB", "18", "464745756")
[code]....
View 3 Replies
Apr 21, 2012
PLATFORM VERSION INFO
Windows : 5.1.2600.131072 (Win32NT)
Common Language Runtime : 2.0.50727.1433
[code]....
View 3 Replies
May 29, 2009
I was asked by an employer to sort a hash table. I always thought that the usage of a hash table was in a way non-sort friendly. Am I wrong in thinking this, and if not can you point me to a good VB.Net(Yes Kill me now, but it's an old system) method of sorting a hash table.
View 3 Replies