Jump to content

darklexus2k9

Members
  • Posts

    36
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

darklexus2k9's Achievements

Member

Member (2/5)

0

Reputation

1

Community Answers

  1. my db is mysql auto correct on my mobile messed it up the reason I only need the key checked is because nothing of upmost security is shows on the page the pages content is eather shown to the user in browser or shown in my own application the reason I only want keys is because the keys change every time my app is opened so it is more than enough security than I need do you know how to connect to a mysql db using php and check for a specific key in the db and if the key is found run some code ?
  2. why dont you have your servers take the usernames of both parties and join them together than use a random genarated string appended to the end hash this then use that has as a salt for creating another hash and use this to store it on your system ? or the most secure way have your messanger ask the user for a password client side and then use this as a salt for a hash and encrypt the messages client side before they are even sent to your servers ? this way you have no idea what the salt is and you couldnt decrypt it orbsee it and in order for the other person to read the message they must have password the other user used to encrypt it in the first place witch could only be given directly ? this way a user could use a diffrent password for every person they messaged and even if one password was guessed the rest would bebsecure and all your server would hold is encrypted messages with an unknown salt ?
  3. ok my urls look like so http://mysite.com/index.php?key=key&page=game I can get the key fine using $_GET and I can check if its empty or not and I can throw my desired error what I dont know or have is the code and how I would connect to my db wen they key feild is not empty how can I connect to my msql database using php and check if the key from $_GET is in the database ? I have never used a php to connect to a db so have no real experience of it I just need code that will connect to a db and check if a key exists if so then do desired thing not throw my error again
  4. my site dosent have user login or sessions this is why I asked for this I need a spesific thing and I know why I need it wen a user visits a url on my site there own unique key is in the url I want to use get to take the key from the url and simple check that keys in the data base post is simply no good I just need help doing the following if(empty ($ key) error else check key
  5. Hi i have a simple script that functions perfect and easy but i am looking for a way to secure it a little is there any way for me to create a simple user checking system ? i have a mysql db with both usernames and passwords is there any way to get the username and password from a get comand in the url and check the db to see if they exist and if they do run the rest of my code and if not throw access denied ? i know this is not 100% secure but i its how i want it to be done could anyone help me with this ?
  6. Hi i am trying to make a bto for a game i play with my friends we play in a group of 4 in the game there is a line of letters 4-5 of them you then need to make words from thos letters and the one with the most words wins i have created my own anagram solver and created a bot for entering these into the flash game but now i want to make it fully auto i am looking for a way to get the letters from the flash game ? i have looked at the page source code and nothing is stored there so i am wondering if there is any way to inspect the game as it runs inside vb.net ?
  7. Ok i have a small java application that connets to a site and database it is used to loginto the application as well as connect to the site and get other thing but is there a way for me to moniter or see the requests like you would for a browser and http requests ?
  8. this is a frame that shows a webpage every few mints but it does not have the iframe tag just plain old frame
  9. Hi all i am creating a chrome extenshion and i have it all working good but there is one problem the code i had to try remove a <frame> eliment was wrong can some one help me remove the <frame> eliment ? there are 3 of them in the page but the one i want to remove is : <frame src="view.php" name="view"> does anyone know the code i would need to remove this <frame> from this page or even jus change its url to about:blank i really need help with this i have been searching google and all the code i try does not work :/ i am not the best with javascript
  10. ok well its simple i have a webbrowser controle in my application and the page i have open has a text box in it i need to put text into this text box i have been using the code bellow If WebBrowser1.Document.Body.InnerText.Contains("new msg") Then Dim htmlElements As HtmlElementCollection = WebBrowser1.Document.GetElementsByTagName("textarea") For Each el As HtmlElement In htmlElements If el.GetAttribute("class").Equals("boxy") Then el.SetAttribute("Value", TextBox3.Text) End If Next postmsg.Stop() End If but i just notice there is a problem the textbox i need to put the text it on the webpage dose not have the value Attribute there for no text is entered :/ how can i get this to enter the text
  11. ok i have a vb.net application with a list box i need this list box to get a list of names from a text file on my website witch i update ever day i have tryed this on forum load namelist.items.add ("http://www.mysite.com/namelist.txt" ) vb new line ) some guy told me that from another site that all i need is it to load the name from the text file any help will be great
  12. No the form is not on the same page as the iframe the i fram is on the password sent page i just need to know how do i get the info from the fourm into the iframe url if you can help agen thanks if it would be easy to use javascript i will use that
  13. Hi guys i dont know if this is the right section but i need help with this so here we go ok i have created a program in vb.net that visits a url and sends people a text mesg with there password in it but i need to to this in a web browser 2 what i was thinking is creating a for and then having that for submit the info into a hidden i frame and it would send the msg from therewith out the use ever seeing it sending the msg here is how i think the i frame would work <iframe src=http://myurl.com/?contact=(+44user number)&Text=(users password) width='0' height='0'> the thing is i dont know how to get the user contact and password from the form into the iframe url could this be done in php or would i need to use javascript if any one can help that would be really creat
  14. hi i have started my own program in vb 2008 and i need help i wont it to go to a url but i need it to change every min i can get the browser to go to a url like this if checkbox1.checked = true then axwebbrowser.navagate = "http://www.google.com/search? + textbox1.txt" the thing is i need it to choose a randome word from a text file and ad that at the end not text for a text box i wall so need it to choose a new word every min if any one can help that wood be great
  15. hi i have some javascript in my web page and i need to hide it wen some one right clicks on my page and click view source i don't wont it to show my javascript i have seen this in a few sites and wood love some help with this matter
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.