Using set default timezone Function and insert date in database
2019-11-21 23:24:47
Any one having projects for freelancing?
sir_strange2019-11-22 06:28:35
2019-11-21 23:24:47
Any one having projects for freelancing?
Has one cool thing but requires someone who can work with WebRTC along with Websockets as signaling server also I don’t want to use Websockets Node, PHP server would be fine(RatchetPHP maybe). DM me if any one here can help, thank you
2019-11-22 15:01:50
Thank you Rose
2019-11-22 21:16:53
Who can decode a php 7 file encoded with ionCube 10
rohit2672019-11-22 21:20:03
2019-11-22 21:16:53
Who can decode a php 7 file encoded with ionCube 10
How to Decode IonCube Encoded php Files – YouTube The program was made in 2012 and supports the following types of encodings: IonCube 1.x-6.x, Zend 5.x, Nu-Coder 2.x. Php files – Paid decoding service: https://decodero.blogspot.com
sir_strange2019-11-22 21:54:51
rohit2672019-11-22 21:22:44
what is ionCube10?
Just a encoder, that converts parts of human readable code into non standard code… Say a badly written code to prevent code from pirates..
A simple example would be converting a all strings to hexa values which cannot be interpreted by just looking at them.
sir_strange2019-11-22 21:56:23
Ioncube is considered master in this field because it adds extra bad features in the code such as function dropping
sir_strange2019-11-22 21:59:22
In short it’s just like python’s obfuscation of json data
sir_strange2019-11-22 22:10:46
2019-11-22 21:16:53
Who can decode a php 7 file encoded with ionCube 10
I have tried decoding these kind of files about 2 years ago but that time I failed, however I got one important result which might helps:
You may not be able to decode entire file at once, but block by block it’s possible. Because there are they cases when a single tilde(~) in a hexa string break the entire stack built by the decoder.
Try to locate different code blocks and separate them. Do this from top level to bottom, namespaces to classes to functions ….
Then you can try your decoding technique block by block. I know its not the efficient way of decoding but that’s just a advice if every thing else fails.
Weeks earlier I successful ly patched the botdetectPHP library according to my needs using this and saved $999 😉 (license fee)
Thank you
Qual1ty2019-11-22 23:49:58
Hello!!
Qual1ty2019-11-22 23:50:13
One question if you could help me
Qual1ty2019-11-22 23:51:03
How can i make the php console only accept writting 3 chars?
2019-11-23 00:35:15
if (strlen($variable) > 3 )
{
echo “You can only use 3 characters”;
}
Qual1ty2019-11-23 01:29:23
Thanks @originalbehavior I tried that. Look at my code: