解码php文件帮助

发布于 2024-10-20 05:29:18 字数 115 浏览 5 评论 0原文

我有一个名为 t.php 的文件上传到我的服务器,位于一个名为 LANG 的目录中。

任何人都可以解码此文件,看起来它会自动构建页面..

(删除了潜在的恶意代码;请参阅修订历史记录)

I had a file uploaded to my server called t.php in a directory called LANG

Can anyone decode this please, looks like it auto builds pages ..

(removed potentially malicious code; see the revision history)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遮云壑 2024-10-27 05:29:18

主要文本内容是:

$x0b = "file_get_contents";
$x0c = "header";

$source = "http://www.megavideo.com/xml/videolink.php?v=$vid"

echo "<h2>There was a problem parsing your XML</h2>"

$x0c("Location: http://www.megavideo.com/previewplayer/?v=&width=640&height=480")

所以是的,你已经被泄露了。没有合理的理由来混淆 file_get_contents() 调用,尤其是在指向视频共享网站时。

The main text blobs come out to:

$x0b = "file_get_contents";
$x0c = "header";

$source = "http://www.megavideo.com/xml/videolink.php?v=$vid"

echo "<h2>There was a problem parsing your XML</h2>"

$x0c("Location: http://www.megavideo.com/previewplayer/?v=&width=640&height=480")

So yes, you've been compromised. There's no legitimate reason to obfuscate file_get_contents() calls, particularly when pointing at a video sharing site.

季末如歌 2024-10-27 05:29:18

这些看起来像 unix shellcode。至于为什么要这样上传,你是如何上传的? FTP GUI 客户端或命令行工具或如何?

Those look like unix shellcodes. As to why they are uploaded as such, how did you upload them? FTP GUI client or command line tool or how?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文