duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
| 103.21.244.0/22,103.22.200.0/22,103.31.4.0/22,104.16.0.0/12,108.162.192.0/18,131.0.72.0/22,141.101.64.0/18,162.158.0.0/15,172.64.0.0/13,173.245.48.0/20,188.114.96.0/20,190.93.240.0/20,197.234.240.0/22,198.41.128.0/17 |
| %% Copyright 2020 Alexander Yakushev | |
| % | |
| % This work may be distributed and/or modified under the | |
| % conditions of the LaTeX Project Public License, either version 1.3 | |
| % of this license or (at your option) any later version. | |
| % The latest version of this license is in | |
| % http://www.latex-project.org/lppl.txt | |
| % and version 1.3 or later is part of all distributions of LaTeX | |
| % version 2005/12/01 or later. | |
| % |
| package terraformer | |
| import ( | |
| "bytes" | |
| "errors" | |
| "path" | |
| "path/filepath" | |
| "...runtime" | |
| "...store" |
| # | |
| # A plugin to setup capture interfaces | |
| # The plugin is off by default. To enable it, add "interfacesetup.enabled=1" to broctl.cfg. | |
| # | |
| import BroControl.plugin | |
| class InterfaceSetupPlugin(BroControl.plugin.Plugin): | |
| def __init__(self): | |
| super(InterfaceSetupPlugin, self).__init__(apiversion=1) |
Allows you to use tables with the dashing framework.
| ##! Add the peer to the connection logs. | |
| module Conn; | |
| export { | |
| redef record Conn::Info += { | |
| peer: string &optional &log; | |
| }; | |
| } |
| redef record HTTP::Info += { | |
| post_body: string &optional &log; | |
| }; | |
| redef record fa_file += { | |
| http_log: HTTP::Info &optional; | |
| }; | |
| event http_get_post_body(f: fa_file, data: string) |
| #!/usr/bin/awk -f | |
| # Parse IEEE OUI vendor list to JSON | |
| # http://standards.ieee.org/develop/regauth/oui/oui.txt | |
| # --- | |
| # Usage: | |
| # $ chmod +x parseoui.awk | |
| # $ wget http://standards.ieee.org/develop/regauth/oui/oui.txt | |
| # $ ./parseoui.awk oui.txt > oui.json | |
| BEGIN { |
| redef record fa_file += { | |
| is_my_extractor_going: bool &default=F; | |
| }; | |
| event file_over_new_connection(f: fa_file, c: connection, is_orig: bool) | |
| { | |
| if ( !f$is_my_extractor_going ) | |
| { | |
| f$is_my_extractor_going=T; | |
| if ( f$source == "HTTP" && is_orig == F ) |