I hereby claim:
- I am mdeous on github.
- I am mdeous (https://keybase.io/mdeous) on keybase.
- I have a public key ASCspzYRS44ZU3KbvFvA9sgD9thyNs0YGzmfDEH5ZmwFLgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| hackmd=# \d | |
| List of relations | |
| Schema | Name | Type | Owner | |
| --------+----------------+----------+-------- | |
| public | Authors | table | hackmd | |
| public | Authors_id_seq | sequence | hackmd | |
| public | Notes | table | hackmd | |
| public | Revisions | table | hackmd | |
| public | SequelizeMeta | table | hackmd | |
| public | Sessions | table | hackmd |
| type Collector interface { | |
| Collect() | |
| } | |
| type LogsCollector struct { | |
| output string | |
| } | |
| func (lc *LogsCollector) Collect() { | |
| // do stuff |
| diff --git a/php-malware-finder/whitelists/wordpress.yar b/php-malware-finder/whitelists/wordpress.yar | |
| index 79655f1..4ea40d6 100644 | |
| --- a/php-malware-finder/whitelists/wordpress.yar | |
| +++ b/php-malware-finder/whitelists/wordpress.yar | |
| @@ -1,477 +1,1046 @@ | |
| import "hash" | |
| -private rule Wordpress : Blog | |
| +private rule Wordpress | |
| { |
I hereby claim:
To claim this, I am signing this object:
| W: Skipping acquire of configured file 'stable/binary-i386/Packages' as repository 'http://security.ubuntu.com/ubuntu artful-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?) | |
| W: Skipping acquire of configured file 'stable/binary-amd64/Packages' as repository 'http://security.ubuntu.com/ubuntu artful-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?) | |
| W: Skipping acquire of configured file 'stable/i18n/Translation-en_US' as repository 'http://security.ubuntu.com/ubuntu artful-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?) | |
| W: Skipping acquire of configured file 'stable/i18n/Translation-en' as repository 'http://security.ubuntu.com/ubuntu artful-security InRelease' doesn't have the component 'stable' (component misspelt in sources.list?) | |
| W: Skipping acquire of configured file 'stable/dep11/Components-amd64.yml' as repository 'http://security.ubuntu.com/ubuntu artful-security InRele |
| # | |
| # multipass.zsh | |
| # | |
| # A wrapper to pass (password-store) for managing multiple | |
| # store paths with a single command while still benefiting | |
| # from Zsh's completion features. | |
| # | |
| # Usage: add the following lines to your .zshrc: | |
| # source /path/to/multipass.zsh | |
| # PASSWORD_STORES[pass1]=/path/to/pass1-store |
| >>> l = [] | |
| >>> l.append(l) | |
| >>> l.append("foo") | |
| >>> print(l) | |
| [[...], 'foo'] | |
| >>> print(l[0]) | |
| [[...], 'foo'] | |
| >>> print(l[0][0]) | |
| [[...], 'foo'] | |
| >>> print(l[0][0][0]) |
| package main | |
| import ( | |
| "fmt" | |
| "io/ioutil" | |
| "path" | |
| ) | |
| func scanFile(targets *chan string, results *chan string) { | |
| for target := range *targets { |