Giter Club home page Giter Club logo

Comments (4)

simon816 avatar simon816 commented on August 18, 2024

What is it that is wrong?

I get this, which looks correct:

<?php

$a = $_POST['a'];
$b = $_GET['b'];
$c = 'assert';
$a($b);
assert($a);
echo "aaa";

from phpdeobfuscator.

L2ksy0d avatar L2ksy0d commented on August 18, 2024

Oh, I mean can the value of $a be restored, because it's the special variable "Superglobals".
Just like $c($a) is restored to assert($_POST['a']).

from phpdeobfuscator.

simon816 avatar simon816 commented on August 18, 2024

Okay, so in a simple example like:

$a = ...
$b = $a;
echo $b;

Then echo $b can be replaced by echo $a?

This won't work in general, as copies are done by-value, which is fine for scalar values but not for arrays.
I don't think superglobals will be any different here.

In an example such as:

$a = [1, 2, 3];
$b = $a;
array_pop($b);

You can't replace array_pop($b) with array_pop($a) because they are different arrays. array_pop($b) only affects array $b, not array $a.

I've also just realised that it's unsound to assume $c is always "assert" when they are global variables. e.g. consider:

function change_globals() {
    global $c;
    $c = 'foo';
}

$a = $_POST['a'];
$b = $_GET['b'];
$c = 'assert';
$a($b);
$c($a);
echo "aaa";

If $_POST['a'] was the string "change_globals", then suddenly $c is no longer "assert" but is instead "foo".

from phpdeobfuscator.

L2ksy0d avatar L2ksy0d commented on August 18, 2024

tks for your answer.

from phpdeobfuscator.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.