8 lines
146 B
Python
Executable File
8 lines
146 B
Python
Executable File
#! /usr/bin/python
|
|
import packet_processer, reporter
|
|
|
|
def main():
|
|
packet_processer.sniff("walfa0", 200)
|
|
|
|
if __name__ == "__main__":
|
|
main() |