- バージョン関係ないっぽい
- 3.4.2, 3.5.1, 3.5.2, 3.6 で確認した
- wp-login.php に多数のアクセス試行が確認されている
- 1sec の wait で GET, POST を繰り返している
- http://nendeb.jp/?p=673 によるともっといろんな頻度でのアクセスがあるっぽい
- 10req/s とか 1req/3m とか
- 海外からの攻撃なので、単純に回線速度の問題?
- 10req/s とか 1req/3m とか
- ブルートフォースっぽく見える
- 上記 URL の記事のスクショをみる限り、そういう挙動
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ================================================================== | |
| Enumerator -> Enumeratee -> Iteratee | |
| ================================================================== | |
| Iteratee >>== Iteratee | |
| := Iteratee | |
| ------------------------------------------------------------------ | |
| Enumerator $$ Iteratee | |
| := Iteratee | |
| ------------------------------------------------------------------ | |
| Enumeratee =$ Iteratee |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function maybe (callback) { | |
| return function (f) { // then | |
| return function (err) { // actual callback | |
| if (err) { | |
| callback(err); | |
| } else { | |
| f.apply(this, Array.prototype.slice.call(arguments, 1)); | |
| } | |
| }; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| #include <sys/socket.h> | |
| #include <sys/ioctl.h> | |
| #include <net/ethernet.h> | |
| #include <netpacket/packet.h> | |
| #include <netinet/if_ether.h> | |
| #include <linux/if.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'socket' | |
| ETH_P_ALL = 0x0300 | |
| ETH_P_IP = 0x800 | |
| class MacAddr | |
| def initialize(addr) | |
| @addr = addr | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "crypto/md5" | |
| "strings" | |
| ) | |
| func md5sum(text string) string { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var util = require('util'); | |
| function Nothing () {} | |
| Object.Nothing = Nothing; | |
| Array.prototype.maybeMap = function (callback, thisArg) { | |
| var T, A, k; | |
| if (this == null) { | |
| throw new TypeError(" this is null or not defined"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:alert(document.head.getElementsByTagName("link")[0].getAttribute("href").match(/ver=(.+)/)[1]);void 0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MS4wMzZ8fDEzNzkyNDgwMTc1MjF8MDAxMTEwfDU1MDkzNzk5ODI4MTc4OzQ5MTE3ODk0OTE2OTQyMjsxMzQ2MTYwOzE1OzMwMzQ5MTcxMTY2NjQwNzsxMTstMTstMTswOzA7MDswOzY3OzUwNzI1fDMwMCw0NzgsMTA1Nzg2MjY0NDExLDA7MjAsMjE5LDExNTcxMjEzNzgsMDswLDExOCwzMjQ2MDEwLDA7MCwxMTksMTgxMTUzNDgsMDswLDEyMCw2NjQxODYyNCwwOzEwMCwxMTgsMjQxMTk3NTQ2LDA7MTAwLDExNSw5MDU5MTYxNzcsMDsxMDAsMTAwLDIwNzQxNzI4MjI0LDA7MjA1LDIwNSw0NDUwNTYzNTU3MjksMDsyMzAwLDIzMDEsMjEyODE2ODIxOTQzMzksMDt8NDUwMzU5OTYyNzM3MDQ5NTs0NTAzNTk5NjI3MzcwNDk1OzIyNTE4MzQxNzM0MjMyMzE7Mzk0MDY5MjQ4OTUzMzk1MTs2OTkzOTF8NDUwMzU5NzYxNDEwNDU3NTsxNTE0MDAyNDk0MjU5MQ%3D%3D%21END%21 |
