All Projects → OWASP → raider

OWASP / raider

Licence: GPL-3.0 license
OWASP Raider: a novel framework for manipulating the HTTP processes of persistent sessions

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to raider

Floatsidebar.js
Lightweight (2kb gzipped), zero-dependency javascript library for making float sidebars based on the finite state machine
Stars: ✭ 56 (-36.36%)
Mutual labels:  fsm, finite-state-machine
Alexafsm
With alexafsm, developers can model dialog agents with first-class concepts such as states, attributes, transition, and actions. alexafsm also provides visualization and other tools to help understand, test, debug, and maintain complex FSM conversations.
Stars: ✭ 103 (+17.05%)
Mutual labels:  fsm, finite-state-machine
Jstate
Advanced state machines in Java.
Stars: ✭ 84 (-4.55%)
Mutual labels:  fsm, finite-state-machine
Fsm As Promised
A finite state machine library using ES6 promises
Stars: ✭ 446 (+406.82%)
Mutual labels:  fsm, finite-state-machine
Statelin
A finite state machine for Kotlin and Android
Stars: ✭ 134 (+52.27%)
Mutual labels:  fsm, finite-state-machine
Libfsm
DFA regular expression library & friends
Stars: ✭ 512 (+481.82%)
Mutual labels:  fsm, finite-state-machine
Finity
A finite state machine library for Node.js and the browser with a friendly configuration DSL.
Stars: ✭ 88 (+0%)
Mutual labels:  fsm, finite-state-machine
simple-state-machine
A simple Java state machine for Spring Boot projects
Stars: ✭ 25 (-71.59%)
Mutual labels:  fsm, finite-state-machine
Automata
A Python library for simulating finite automata, pushdown automata, and Turing machines
Stars: ✭ 121 (+37.5%)
Mutual labels:  fsm, finite-state-machine
Microwf
A simple finite state machine (FSM) with workflow character where you define your workflows in code.
Stars: ✭ 122 (+38.64%)
Mutual labels:  fsm, finite-state-machine
Statecharts.github.io
There is no state but what we make. Feel free to pitch in.
Stars: ✭ 265 (+201.14%)
Mutual labels:  fsm, finite-state-machine
Nanostate
🚦- Small Finite State Machines
Stars: ✭ 151 (+71.59%)
Mutual labels:  fsm, finite-state-machine
statemachine-go
🚦 Declarative Finite-State Machines in Go
Stars: ✭ 47 (-46.59%)
Mutual labels:  fsm, finite-state-machine
Stateless4j
Lightweight Java State Machine
Stars: ✭ 658 (+647.73%)
Mutual labels:  fsm, finite-state-machine
UnityHFSM
A simple yet powerful class based hierarchical finite state machine for Unity3D
Stars: ✭ 243 (+176.14%)
Mutual labels:  fsm, finite-state-machine
Fsm
Finite State Machine for Go
Stars: ✭ 1,269 (+1342.05%)
Mutual labels:  fsm, finite-state-machine
pastafarian
A tiny event-based finite state machine
Stars: ✭ 20 (-77.27%)
Mutual labels:  fsm, finite-state-machine
fsm
Finite State Machine for Go inspired by Akka FSM
Stars: ✭ 59 (-32.95%)
Mutual labels:  fsm, finite-state-machine
Afsm
C++14 Finite State Machine library
Stars: ✭ 113 (+28.41%)
Mutual labels:  fsm, finite-state-machine
Django Fsm
Django friendly finite state machine support
Stars: ✭ 1,898 (+2056.82%)
Mutual labels:  fsm, finite-state-machine

Raider logo

Quick links

What is Raider

OWASP Raider was developed with the goal to improve web authentication testing. By now it has evolved and can be used for all kinds of stateful HTTP processes. It abstracts the client-server information exchange as a finite state machine. Each step comprises one request with inputs, one response with outputs, arbitrary actions to do on the response, and conditional links to other stages. Thus, a graph-like structure is created. Raider allows you to simulate complex systems while allowing you to control each piece of data you get in and out of the system.

Graph-like architecture

Raider defines a DSL to describe the information flow between the client and the server for HTTP processes. Each step of the process is described by a Flow, which contains the Request with inputs, Response with outputs, and arbitrary actions including links to other Flows:

Flows

Chaining several Flows together can be used to simulate any stateful HTTP process. FlowGraphs indicate the starting point. They can be placed on any Flow. A FlowGraphs runs all Flows in the link until Success/Failure is returned or if there are no more links.

Flows and FlowGraphs

Configuration

Raider's configuration is inspired by Emacs. Hylang is used, which is LISP on top of Python. LISP is used because of its "Code is Data, Data is Code" property. With the magic of LISP macros generating configuration automatically becomes easy. Flexibility is in its DNA, meaning it can be infinitely extended with actual code. You can use it for example to create, store, reproduce, and share proof-of-concepts easily for HTTP attacks. With Raider you can also search through your Projects, filter by hyfile, Flows, FlowGraphs, etc... Then you run either just one step, or a chain of steps, so you can automate and run tests on any HTTP process.

Example hylang configuration

Command line interface

You can use it for example to create, store, reproduce, and share proof-of-concepts easily for HTTP attacks. With Raider you can also search through your Projects, filter by hyfile, Flows, FlowGraphs, etc... Then you run either just one step, or a chain of steps, so you can automate and run tests on any HTTP process.

You can also search through your Projects, filter by hyfile, Flows, FlowGraphs, etc… Then you run either just one step, or a chain of steps, so you can automate and run tests the HTTP process.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].