[V-sro File] Change Password

10/08/2011 23:02 BestOnWorld#1
Download
[Only registered and activated users can see links. Click Here To Register...]
VirusTotal
[Only registered and activated users can see links. Click Here To Register...]
press Thanks ;)
10/08/2011 23:45 ahmed4ever2u#2
if any one can use his mind ,,, he will change the old projects which they were made for srx & srevo,, to VSro But thx
10/09/2011 00:04 ByMnkn#3
i need ııs panel
10/09/2011 00:18 BestOnWorld#4
wait me tommorrow i will made full register page
10/09/2011 00:26 rushcrush#5
this not good...........
10/09/2011 00:26 ByMnkn#6
Quote:
Originally Posted by BestOnWorld View Post
wait me tommorrow i will made full register page
IIS installed I logged on white pages

[Only registered and activated users can see links. Click Here To Register...]
10/09/2011 17:32 InTerpoL05#7
Hey when i wanted to load silk to any user. Page gives me this mesage .(100 silks loaded succesfully to user.)
But after this mesage page giving this error ;

Warning: mssql_query(): message: Incorrect syntax near ','. (severity 15) in c:\appserv\www\chargesilk.php on line 23

Warning: mssql_query(): Query failed in c:\appserv\www\chargesilk.php on line 23


and this is my chargesilk.php.

<?php
require_once("include/Security.php");
require_once("include/sqlConn.php");

session_start();
if(!isset($_SESSION['loggedin'])) {
die("You're not logged in: <a href='index.php'>LOGIN</a>");
}

$check = new security();
$message = null;
if ($check->is_secure($_POST['username']) == false) $message[] = "<a href='Change.php'>Invalid characters in Username field!</a><br />";
if ($check->is_secure($_POST['silkamount']) == false) $message[] = "<a href='Change.php'>Invalid characters in Silk Amount field!</a><br />";
if(count($message) > 0) {
for($i = 0; $i < count($message); $i++) {
print $message[$i];
header("location:user.php?silksent=false");
}
return;
} else {
$userName = $_POST['username'];
$silkAmount = $_POST['silkamount'];
mssql_query("exec CGI.CGI_WebPurchaseSilk 0,'$userName',0,$silkAmount,0");

print "<script type='text/javascript'>";
print "alert('". $silkAmount ." Silks have been added to user ". $userName ."');";
print "window.location='user.php';";
print "</script>";
}

?>
10/10/2011 00:55 bahaa12#8
:facepalm:i think he write the html only or he just share it and he wrote coded by me
he asked 2 days ago about 1
sure he cant learn html,css,sql,php for reg page in 2 days
10/10/2011 05:47 BestOnWorld#9
bahaa12 why you hate me :D
First Coded Not by me only by me and by Artuuro_lv
And no problem with me in change Password
10/10/2011 12:01 Dr.Abdelfattah#10
Good work but i don't test it yet :D

Quote:
Originally Posted by bahaa12 View Post
:facepalm:i think he write the html only or he just share it and he wrote coded by me
he asked 2 days ago about 1
sure he cant learn html,css,sql,php for reg page in 2 days
he can if he learn any other coding language ;)
+
edit php script is verry easy , he just need to change and fix small things to let it stable with vsro DB :)
10/10/2011 14:09 bahaa12#11
Quote:
Originally Posted by Dr.Abdelfattah View Post
Good work but i don't test it yet :D


he can if he learn any other coding language ;)
+
edit php script is verry easy , he just need to change and fix small things to let it stable with vsro DB :)
easy for you because you know it.
he know 0% so what??
i just hate who spam and lie.
10/10/2011 14:29 Dr.Abdelfattah#12
Quote:
Originally Posted by bahaa12 View Post
easy for you because you know it.
he know 0% so what??
i just hate who spam and lie.
hate what u want to hate xD
& lool i was talking about him not me !!
u try to learn coding and fail so it's not my problem that u havan't talent ..
But edit (php script){not create} never need coder, need just good thinking and [Only registered and activated users can see links. Click Here To Register...] can do that .. can't u?
10/10/2011 14:49 bahaa12#13
Quote:
Originally Posted by Dr.Abdelfattah View Post
hate what u want to hate xD
& lool i was talking about him not me !!
u try to learn coding and fail so it's not my problem that u havan't talent ..
But edit (php script){not create} never need coder, need just good thinking and [Only registered and activated users can see links. Click Here To Register...] can do that .. can't u?
!@%#&$ edit this string
you can ? no
because you dont know what it is.
10/10/2011 15:10 Dr.Abdelfattah#14
Quote:
Originally Posted by bahaa12 View Post
!@%#&$ edit this string
you can ? no
because you dont know what it is.
hhhhh oky!
look here to see that's only verry easy for un coders !!!
i'm not php coder but it's easy as u will see
let me take example on this script
let's begain with index.php

PHP Code:
<?php
echo "
    <form action='login.php' method='POST'>
        <table border='1'>
            <tr>
                <td>Username:</td>
                <td><input type='text' name='username'></td>
            </tr>
            <tr>
                <td>Password:</td>
                <td><input type='password' name='password'></td>
            </tr>
            <tr>
                <td></td>
                <td><input type='submit' name='submit' value='Login'></td>
            </tr>
        </table>
    </form>
"
;
?>
Now u see (username) string !
in
PHP Code:
<input type='text' name='username'
Now we finish looking in index.php let us go to login.php as we knowen from this line in index.php
PHP Code:
<form action='login.php' method='POST'
Now $username is the relation ship between UserName and db of users
(We are take example on username only) so we edit username only
now login.php take it's info from
PHP Code:
    require_once("include/Security.php");
    require_once(
"include/sqlConn.php"); 
Security.php
&
sqlConn.php
let's back to login.php again
@
PHP Code:
$verifyAccount mssql_num_rows(mssql_query("select * from TB_User where StrUserID = '$username' AND password = '$password'")); 
So it's select from database TB_User table
PHP Code:
where StrUserID '$username 
now username will be store at StrUserID
So in TB_User
the column of username is StrUserID

Now if u have user name column named (ex : JID)
so u can change StrUserID to JID so it will be
PHP Code:
$verifyAccount mssql_num_rows(mssql_query("select * from TB_User where JID = '$username' AND password = '$password'")); 
-----------------------

Hah now look it's easy or not?
i think when u read my post u can edit any php script and u learn now how to edit in mints ;)
10/11/2011 00:17 bahaa12#15
Quote:
Originally Posted by Dr.Abdelfattah View Post
hhhhh oky!
look here to see that's only verry easy for un coders !!!
i'm not php coder but it's easy as u will see
let me take example on this script
let's begain with index.php

PHP Code:
<?php
echo "
    <form action='login.php' method='POST'>
        <table border='1'>
            <tr>
                <td>Username:</td>
                <td><input type='text' name='username'></td>
            </tr>
            <tr>
                <td>Password:</td>
                <td><input type='password' name='password'></td>
            </tr>
            <tr>
                <td></td>
                <td><input type='submit' name='submit' value='Login'></td>
            </tr>
        </table>
    </form>
"
;
?>
Now u see (username) string !
in
PHP Code:
<input type='text' name='username'
Now we finish looking in index.php let us go to login.php as we knowen from this line in index.php
PHP Code:
<form action='login.php' method='POST'
Now $username is the relation ship between UserName and db of users
(We are take example on username only) so we edit username only
now login.php take it's info from
PHP Code:
    require_once("include/Security.php");
    require_once(
"include/sqlConn.php"); 
Security.php
&
sqlConn.php
let's back to login.php again
@
PHP Code:
$verifyAccount mssql_num_rows(mssql_query("select * from TB_User where StrUserID = '$username' AND password = '$password'")); 
So it's select from database TB_User table
PHP Code:
where StrUserID '$username 
now username will be store at StrUserID
So in TB_User
the column of username is StrUserID

Now if u have user name column named (ex : JID)
so u can change StrUserID to JID so it will be
PHP Code:
$verifyAccount mssql_num_rows(mssql_query("select * from TB_User where JID = '$username' AND password = '$password'")); 
-----------------------

Hah now look it's easy or not?
i think when u read my post u can edit any php script and u learn now how to edit in mints ;)
do u think all ppl like u ?
you can read it easy
he cant
maybe he can change html but php no.
you dont realy know that guy