Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I just downloaded a file of my Synology Diskstation but the content looks like this:
http://pastebin.com/eLLM8UZR
Is there a way to decrypt it?
The file is the youtube.php file for the Downloadstation.
Looking at the first bytes of the file, it looks like it is a .bz2 (bzip) file. Popular "unzippers" like 7zip should be able to unzip it to a usable file. If you have a more recent Synology DS, you might even have a "bzip2" on the command line (check bzip2 --help how to work with this command).
Related
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a local server installed on my Mac (MAMP). Where can I find the PHP functions on my computer?
What is the path to the functions folder? For instance, rand(), time(), isset(), explode().
I would like to see the code to learn from it.
You can download the PHP source from the page http://php.net/downloads.php.
Download and extract the archives. The standard functions are located under ext/standard.
Or simply browse them on GitHub: https://github.com/php/php-src/tree/master/ext/standard
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I recently noticed that in server a files is created by name bat.php, I downloaded the file and checked in local, it has some codes which i didnt understand and wondered what is this file and how it got generated in my server.
Can anyone tell me what is this? and why it is generated?
Looks like someone has compromised your security and installed a Web Shell script on your server. Here's the actual code! https://github.com/k4mpr3t/b4tm4n
Remove it NOW! This will allow the user to run CLI commands on your system!
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
What is the best way to rename text in different files?
Need to rename all text who is ex:
static.website.com to static.newwebsite.com
The text in named in css,php and html files who is on one folder.
Im using Putty to see and change files.
The folder is on Ubuntu
If you have a terminal open on the Ubuntu machine, change to the directory where the files are (since you said they are all in the same directory) then use the following to replace all instances of static.website.com with static.newwebsite.com
sed -i'.bak' 's/static.website.com/static.newwebsite.com/g' ./*.{css,html,php}
-i'.bak' : -i means to edit in place and '.bak' will create a backup of the original with the extension .bak
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I have a private server on which I have placed a .php file in the root folder.
I want to run the .php file script by accessing it from the URL.
SO how can this be achieved.
Did you installed apache yet? to run a php page you need a web server like apache, nginx.
If installed, place your php file in public_html folder.
then, you can execute your php file by visiting http://yourdomain.com/yourpage.php
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
I have a local server installed on my Mac (MAMP). Where can I find the PHP functions on my computer?
What is the path to the functions folder? For instance, rand(), time(), isset(), explode().
I would like to see the code to learn from it.
You can download the PHP source from the page http://php.net/downloads.php.
Download and extract the archives. The standard functions are located under ext/standard.
Or simply browse them on GitHub: https://github.com/php/php-src/tree/master/ext/standard