
Isomerizer
Members-
Posts
1,170 -
Joined
-
Last visited
-
Days Won
3
Content Type
Profiles
Forums
Events
Everything posted by Isomerizer
-
15% charge? I don't know what PayPal is like in SA, but here I just pay for it normally (with $0 balance) and PayPal will do all the rest for me. Taking the cash from my bank account automatically and not charging a penny. I have a direct debit set up with them though. Which requires bank validation. I have no credit cards linked to my PayPal. What account type do you have?
-
If you have 2 cards/bank accounts linked to your PayPal account but have $0.00 balance. It will automatically use an Instant Bank Transfer when you purchase something using PayPal. I do it all the time, so yes it is possible. * The Cards/Banks may have to be verified. *
-
Hi, I've been working on a PHP game engine for just over 3 months now. I have the basic concept complete, with a secure&stable API. I believe to have a unique USP. The game is still in pre-development and not open to the public. The thing I lack is creativity & design, I can code CSS no problem... But thinking of even a blending colour schemes is a struggle to me. I'm looking for someone to help with my current game project and become a part of the team. The team currently consists of me (PHP Programmer), Server Admin (friend of mine with his own small data center) & 1 GFX designer (part-time). I'm looking for someone with a creative & open mind. You'll be required to help work on the template, create some images & input on new ideas/suggestions. Myself, I have quite some experience in the PHP gaming industry & have programmed my own game engine in the past. This is the second engine I have created from scratch & third game I have owned. Been programming PHP based around gaming for about 5 years. The percentage share of the team is still undecided. Interested? Or for more details please feel free to ask.
-
There's no need for the while loop, as your only pulling one row of data from the table (1 userid). It then stores it into an array (multiple value variable).. $q = mysql_query("SELECT `stepone` FROM `quests` WHERE `userid` = ".$ir['userid']); $quests = mysql_fetch_array($q); if ($quest['stepone']=='done') { echo "You have completed step one."; } else { echo "do something here"; } You'd only need the loop if you was pulling more then one row of data.
-
Myself, Google Chrome. For years I used FireFox, then tried out Chrome when it was released for Beta. Never turned back. What about everybody else?
-
Tried that bert, I thought it woulda done the trick. However, after reading that article it also supplies the information I don't want to hear. "There is no way you can make you Adsense work with Https, so only way is to switch it off with https." I think i'll have to accept it and only use adsense with HTTP. :(
-
Does anyone know if its possible to use the Google Adsense Javascript code with HTTPS and not return any warnings? I have an SSL certificate installed, and when using Google Adsenses code it returns a warning (being thirdparty content). I've googled this and a few tips and work-arounds have been provided, but these seem to be outdated and don't work for me. There must be some way to spook it... So I wonder, has anyone managed to get adsense to display on https without returning any browser warnings/errors?
-
Thanks for the tips, I'll be sure to use preg_match. What about hashing session_id() & salt into a COOKIE, then comparing. Maybe harder for the jacker to identify, have you tried it? (Choosing a cookie over a database, I think is securer in this instance as its stored on the client. Making it harder for the jacker to obtain the session_id(), they'd need the cookie to dehash it. IF they realize the prevention method.) Thoughts?
-
So as most of you are aware; SESSION hijacking is becoming more common & easier to do. With ready made tools to allow even the most novice users attempt it. http://codebutler.com/firesheep So I ask myself, whats the best way to stop it? The methods I've implemented so far are: - Login IP compared with current IP. $IP = (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']); if (preg_match('/[^0-9\\.]/i', $IP)) { die('Error - Invalid IP'); } // valid IP $agent = (is_string($_SERVER['HTTP_USER_AGENT'])) ? $_SERVER['HTTP_USER_AGENT'] : ''; if ($last['lastIP'] != $IP || $last['user_agent'] != $agent) { // IP/user_agent changed instantly, SESSION HIJACK ? ($last: latest IP/agent fetched from database - record IP/agent when user authenticates) die('Your IP/Browser has suddenly changed. Please close your browser & re-login...'); } - Login agent compared with current agent (same method as above, but compare $_SERVER['HTTP_USER_AGENT']). - Encrypt the SESSION content, but then again... seems pointless. It can't be edited, as it's server side. - Compare with $_COOKIE (client side), setcookie on authenticate. if ($_COOKIE['agent'] != md5($agent . session_id(). "3a2b1c")) { die('Your cookie configuration is incorrect. Please re-login to fix this.'); } So I may have only scraped the bottom of the barrel here, but what are your methods you use to secure your SESSION's from being hijacked?
-
What was your very first mod you made for the community? Mines: http://makewebgames.io/showthread.php/21239-v1-Free-Personal-Notes-Simple
-
1 year passes... I guess SomeRandomBastard.
-
And then do what? His BIOS isn't recognising any components...
-
Where's my name!? :(
-
Yep still for sale; drop me an email with what you want, i can then send them over once payment received. All my mods and prices can be seen on http://www.isomerizer.com and my email / pp is [email protected] . Sorry for late response, rarely logon to mwg. Thanks for the email rulerofzu :) - Iso
-
Yes it formats a string? But its still useful to use when securing... I don't see why you have even bothered to post? Not once did I say use htmlentities on everything... The topic creator did not specify what they actually wanted to do so I provided a small list of some PHP security functions they could explore. Any who, back to the topic. I forgot to include the security tut link: http://makewebgames.io/board881-security-tutorials/ I'd also recommend reading this tutorial first: An introduction to security
-
Not that I am aware of, v2.0.2 is there latest release (http://www.mccodes.com/viewengine.php?id=3) There are modifications / codes on the forum that will help with security issues, however you must be aware security issues will not just be quick fix. You must learn to program securely leaving no holes in your system. MCCODE's has a lot of backdoors and numerous security issues, your best bet is to first scan the forum for some tips / tools to improve security, then to go over your whole website checking for SQL / XSS injections. (most mysql_querys will have to be revised) Recommended functions to learn: mysql_real_escape_string : http://www.php.net/manual/en/function.mysql-real-escape-string.php sprintf : http://www.php.net/manual/en/function.mysql-real-escape-string.php HTMLentities : http://php.net/manual/en/function.htmlentities.php You just gotta double check your validating every single user input.
-
Very good tutorials, I've managed to create LittleFTP 0.1. And hope to expand on it with some small functions such as prompt boxes if login incorrect etc. :) (One small question: Why do we not use WPF instead of Windows Form Application for LittleFTP 0.1?)
-
http://www.urbandictionary.com/define.php?term=spudinski :pinch:
-
Demo: http://isomerizer.com/demo MCCodes official website: http://mccodes.com/
-
Looks sweet, will be using this IRC client over PJIRC from now on. Good work.
-
Thanks a_bertrand, any links appreciated! Yep, I have to get into the habit of converting, linking, and then executing... But what exactly is assembly used to created? Any examples? All i've seen is it outputting hello world... ^^ Edit: Nice Zeggy, still have the calculator around?
-
I'm at a next to nothing level of understanding, I'm still trying to remember the flags/registers. I don't need to know anything too in depth, just the basics, maybe create a few basic scripts exampling a loop, arithmetic... My degree is not a programming based computing degree, so we have minimal programming help. (I've been taught how to define a variable in python for the last 4 months...) This is why I ask here, I don't know how common Assembly is, just its low level and can be very powerful and fast. As you can probably guess, It's a completely new thing for me! Where did you first learn? Any good & simple tutorials I can follow? And what would you recommend doing first? My assembly teacher also gave me the same advice to play around with the debugger, so I've been going over that. What scripts have you created with it?
-
I was wondering if anyone on here has any experience on Assembly programming and feels kind enough to share any tips/tutorials/advice , as this programming language completely confuses me! I have recently started learning it as I must have a basic understanding of it on my degree. I'm using 8086 TASM to edit .asm files and execute/link them to .exe. So far I have managed to create one script outputting "Hello Ben". DOSSEG .MODEL SMALL .STACK 100h .DATA HelloMessage DB 'Hello, Ben',13,10,'$' .CODE mov ax,@data mov ds,ax ;set DS to point to the data segment mov ah,9 ;DOS print string function mov dx,OFFSET HelloMessage ;point to "Hello, ben" int 21h ;display "Hello, ben" mov ah,4ch ;DOS terminate program function int 21h ;terminate the program END I've also managed to mov and add on to some registers and play about with them a bit. I've got as far as handling int's... .MODEL small .STACK 200h .DATA buffer DB 20 DUP (0) .CODE mov ax,@data mov ds,ax mov ax,0 ; clear ax reg mov bx,0 ; clean bx reg mov cx,0 ; clear cx reg mov al,-25 mov bl,-25h mov cl,-101101b mov al,25 ; decimal value 25 mov bl,25h ; 25 hexadecimal mov cl,101101b ;45 in binary add al,bl ; adds the contents of the two b-bit registers al and bl mov ah,4ch ;termine the program and... int 21h ;return to DOS END And have almost mastered how to use the basics of the debugging tool. Any help at all will be highly appreciated!
-
Website Layout Maker Ultra Edition
Isomerizer replied to mdshare's topic in Programming Tools, Software and much more
Very nice tool, had a play around with this, ideal for guys like me who lack creativity when it comes down to web development. Only downfall, is the trial doesn't generate the HTML/CSS/Images. However the fully licensed bit of kit does. -
Hes getting at... English are slags, most english have had several babies by the age of 15.