Coder Social home page Coder Social logo

vince's Introduction

Linux based secure systems manager (Vince - former name)

In development phase. There can be discrepencies in the content provided below. Please refer learning branch. Development now going in master branch.

Main Components to consider -

Just for reference (not sure about their accuracy)

  1. Search whether any existing such software exists?
  2. What will our agent do?
  3. How will it work?
  4. What components will it target while working?
  5. How is it different from rest of the softwares?
  6. How is it secure & reliable, as compared to others?
  7. Advantages & limitations.
  8. Is there any stable software that can pass our call through any system reserved port rather than above 1024 ports.

Roadmap -

Requirements -

  1. Server side (Mobile agent)
  2. Client side (script installed in system)

Working of server side script -

  • payload - | Payload 1 (Shell Script/Code) | Playlod 2 (Data file)|

Working of client side script -

  • takes payload 1 into consideration and then will execute accordingly.

Installing the client (using shebang)

Walkthrough of making a python script available anywhere:

Make a python script:

cd /home/el/bin
touch stuff.py
chmod +x stuff.py

Find out where your python is:

which python /usr/bin/python

Put this code in there:

#!/usr/bin/python
print "hi"

Run in it the same directory:

python stuff.py

Go up a directory and it's not available:

cd ..
stuff.py

-bash: stuff.py: command not found

Not found! It's as we expect, add the file path of the python file to the $PATH

vi ~/.bashrc

Add the file:

export PATH=$PATH:/home/el/bin

Save it out, re apply the .bashrc, and retry

source ~/.bashrc

Try again:

cd /home/el
stuff.py

Prints:

hi

The trick is that the bash shell knows the language of the file via the shebang.

Try -

Implement these things for better understanding of the project.

  1. Chat server (single client & multiple clients/group chat).
  2. Data transfer (single client & multiple clients/multicasting).
  3. Code and Data - Transport both as payload (single client & multiple clients).

Useful links to refer -

Extra links -

Running the project

  • For running the client script
	python broadcasting_client.py

Note - client will save the received file to files/file.txt.

  • For running the server script (it requires input file)
	python broadcasting_server.py temp.txt

Note - temp.txt holds all the commands that needs to be executed on the clients.

Generating a GPG key

  • For generating a GPG key refer here
  • Documentation regarding GPG is here

vince's People

Watchers

 avatar  avatar

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.