27.gif

Search (advanced search)
Use this Search form before posting, asking or make a new thread.
Tips: Use Quotation mark to search words (eg. "How To Make Money Online")

07-17-2015, 06:53 AM (This post was last modified: 07-17-2015 07:13 AM by Xecution.)
Post: #11
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
Hmm... /install/install.php

Code:
/*$curl_handle = curl_init();
                curl_setopt($curl_handle, CURLOPT_URL, 'http://tecdiary.com/support/api/getdb/');
                curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($curl_handle, CURLOPT_POST, 1);
                curl_setopt($curl_handle, CURLOPT_POSTFIELDS, array(
                    'username' => $_POST["username"],
                    'code' => $_POST["code"],
                    'id' => '4259689',
                    'version' => '3.0',
                    'type' => 'install'
                ));*/

Is that how you nulled it? Lol.

But why not also the following, which still exists:

Code:
if ($_POST) {
                $code = $_POST["code"];
                $username = $_POST["username"];
                $curl_handle = curl_init();
                curl_setopt($curl_handle, CURLOPT_URL, 'http://tecdiary.com/support/api/register/');
                curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($curl_handle, CURLOPT_POST, 1);
                $referer = "http://" . $_SERVER["SERVER_NAME"] . substr($_SERVER["REQUEST_URI"], 0, -17);
                $path = substr(realpath(dirname(__FILE__)), 0, -8);
                curl_setopt($curl_handle, CURLOPT_POSTFIELDS, array(
                    'username' => $_POST["username"],
                    //'email' => $_POST["email"],
                    'code' => $_POST["code"],
                    'id' => '4259689',
                    'ip' => $_SERVER['REMOTE_ADDR'],
                    'referer' => $referer,
                    'path' => $path
                ));

And, "Checking for Updates"

/sim/controllers/settings.php (Ling 641)
Code:
$updates = get_curl_contents('http://tecdiary.com/api/v1/update/', $fields);

And, Saving the updated files from the developers server to yours...

/sim/helpers/curl_helper.php (line 22)
Code:
file_put_contents('./files/updates/'.$file, fopen("http://tecdiary.com/api/v1/download/file/".$file, 'r'));

And the this... Which is kinda a big deal.

/update/update.php (lines 105 and 292 area)
Code:
if ($_POST) {
                $code = $_POST["code"];
                $username = $_POST["username"];
                $curl_handle = curl_init();
                curl_setopt($curl_handle, CURLOPT_URL, 'http://tecdiary.com/support/api/register/');
                curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($curl_handle, CURLOPT_POST, 1);
                $referer = "http://" . $_SERVER["SERVER_NAME"] . substr($_SERVER["REQUEST_URI"], 0, -14);
                $path = substr(realpath(dirname(__FILE__)), 0, -7);
                curl_setopt($curl_handle, CURLOPT_POSTFIELDS, array(
                    'username' => $_POST["username"],
                    //'email' => $_POST["email"],
                    'code' => $_POST["code"],
                    'id' => '4259689',
                    'ip' => $_SERVER['REMOTE_ADDR'],
                    'referer' => $referer,
                    'path' => $path
                ));


//////////////////////////////////////////


            if ($_POST) {
                $code = $_POST['code'];
                $username = $_POST['username'];
                define("BASEPATH", "update/");
                include("../sim/config/database.php");
                $curl_handle = curl_init();
                curl_setopt($curl_handle, CURLOPT_URL, 'http://tecdiary.com/support/api/getdb/');
                curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
                curl_setopt($curl_handle, CURLOPT_POST, 1);
                curl_setopt($curl_handle, CURLOPT_POSTFIELDS, array(
                    'username' => $_POST["username"],
                    'code' => $_POST["code"],
                    'id' => '4259689',
                    'version' => '3.0',
                    'type' => 'update'
                ));

Which you originally have commented out in the install, but not for the update process... So, since you didn't disable the update procedure... it will cry home if someone updates.
B E S T B L A C K H A T F O R U M
(™))::::::::({/,/,/,/,// X 3 C //,/,/,/,/,/,/,`>
07-17-2015, 07:13 AM (This post was last modified: 07-17-2015 07:16 AM by lolclol.)
Post: #12
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
can you not see its high lighted out.
code1. don't you understand that anything in /* */ does not get read or execute??
code2. it only runs if the the buffer curl_exec was in place but again its /* */ out so it does not run execute the curl code..


Sorry I did not clean up the code. but I truly can't be assed. the amount of times I have cleaned nulled scripts up and leechers dont rep or not get the credit owed by nulling it for you for free. so now I will null and leave the crap behind.. but it all works fine.


Oops ok totally forgot about the updates. i will sort that out and reupload. but really what the author will get a IP address he cant access your script to see if its nulled or purchased.
07-17-2015, 07:23 AM (This post was last modified: 07-17-2015 07:25 AM by Xecution.)
Post: #13
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
Hey man, Im not "assing" you. I'm just pointing a few things out... just so no-one gets screwed over.

As for cleaning it up. I prefer to have the original code /* commented out //. I don't like when it's removed personally.

Thanks for providing the script in the first place, it's appreciated.
B E S T B L A C K H A T F O R U M
(™))::::::::({/,/,/,/,// X 3 C //,/,/,/,/,/,/,`>
07-17-2015, 07:40 AM
Post: #14
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
Hey Xecution, thanks for the heads up there, looks like we would be busted pretty quick using this?
Max reps for your work on this
TRYING to increase my MF account, will give MAX Reps (IF you want let me know) https://www.mediafire.com/?q596gt1

ALSO get courses at an EXTREMELY reasonable price for a LIFETIME here: https://wellherewego--{{{Blocked by Omni Potens, reason: reports from LEGIT GB STARTER}}}.thrivecart.com/vip-plan/
07-17-2015, 08:20 AM
Post: #15
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
Nah, I don't think anyone would get busted... per-say. lolclol is right for the most part... the dev would prob end up with an IP address "if/once you updated it from the backend". But he wouldn't be able do much, unless you have a dedicated IP address pointing to your personal information.

Other than that, it's good and looks to be clean. I didn't see anything really malicious at all... and there are just a few links to the developers site (install and update) so it looks good to me.
20.gif
B E S T B L A C K H A T F O R U M
(™))::::::::({/,/,/,/,// X 3 C //,/,/,/,/,/,/,`>
07-28-2015, 01:36 PM
Post: #16
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
thanks advance... its work

+Reps...
07-28-2015, 02:26 PM
Post: #17
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
Nulled scripts, the whole idea for developers is that the hackers leave the update alone, that way the script nags the user for updates and purchase the product. Nulled scripts are good for testing things out see if you like em.
07-29-2015, 06:00 AM
Post: #18
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
lolclol and xecution can you please stop the update process?

Or please share the code so that we can manipulate to stop the update process from back end.
Please Give Rep If You Like My Share
09-19-2015, 01:58 AM
Post: #19
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
the link download not work
09-20-2015, 02:04 AM
Post: #20
RE: {NULLED}Simple Invoice Manager - Invoicing Made Easy 3.2
(07-17-2015 01:52 AM)lolclol Wrote:  please do not make mirrors i will look after the links

may be some update or reupload

thank's
84.gif




50.gif