Giter Club home page Giter Club logo

sa-netops's People

Contributors

anthonygtellez avatar hire-vladimir avatar ww9rivers avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

sa-netops's Issues

add a search form

Add a simple form that will allow user to input MAC address, return vendor..

add mac "categorization" mechanism

adding a mac_vendor_possible_category or something like that, where a guess would be made on what the device might be..it virtualization, network, mobile, etc will be handy, but will require a bit of research

For example:

00:1c:42*   Parallels, Inc.
00:15:5d*   Microsoft Corporation
00:1c:14*   VMware, Inc

expand into net tools

for example, by providing IP and bit mask, derive the cidr block. example courtesy of Jackson Sie

| localop | stats count
| eval ip="231.5.2.97"
| eval bitness=30
| rex field=ip "(?<octet1>\d+)\.(?<octet2>\d+)\.(?<octet3>\d+)\.(?<octet4>\d+)"
| eval ipnum = (octet1 * 16777216 + octet2 * 65536 + octet3 * 256 + octet4)
| eval ipnum_bitted = floor(ipnum / pow(2,32-bitness)) * pow(2,32-bitness)
| eval net1=floor(ipnum_bitted/16777216),net2=floor((ipnum_bitted-net1*16777216)/65536),net3=floor((ipnum_bitted-net1*16777216-net2*65536)/256),net4=ipnum_bitted%256
| eval ip_bitted=net1.".".net2.".".net3.".".net4."/".bitness
| table ip,bitness,ip_bitted | fieldformat bitness="/".bitness

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.