get equipped with: obnoxious
This commit is contained in:
parent
6a7c453f3e
commit
5a94dc3751
17
Makefile
17
Makefile
|
@ -1,3 +1,20 @@
|
|||
# crossfire: distributed brute force infrastructure
|
||||
#
|
||||
# Copyright (C) 2020 haskal
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU Affero General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU Affero General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU Affero General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all:
|
||||
|
|
18
README.md
18
README.md
|
@ -1,3 +1,21 @@
|
|||
<!--
|
||||
crossfire: distributed brute force infrastructure
|
||||
|
||||
Copyright (C) 2020 haskal
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU Affero General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU Affero General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
-->
|
||||
# crossfire
|
||||
|
||||
distributed brute force infrastructure
|
||||
|
|
|
@ -1,4 +1,20 @@
|
|||
#lang racket/base
|
||||
;; crossfire: distributed brute force infrastructure
|
||||
;;
|
||||
;; Copyright (C) 2020 haskal
|
||||
;;
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU Affero General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU Affero General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Affero General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
(require racket/match racket/runtime-path
|
||||
scribble/text (rename-in scribble/text/output [output scribble-output]))
|
||||
|
|
|
@ -1,4 +1,22 @@
|
|||
@; vim: ft=c
|
||||
@;; crossfire: distributed brute force infrastructure
|
||||
@;;
|
||||
@;; Copyright (C) 2020 haskal
|
||||
@;;
|
||||
@;; This program is free software: you can redistribute it and/or modify
|
||||
@;; it under the terms of the GNU Affero General Public License as published by
|
||||
@;; the Free Software Foundation, either version 3 of the License, or
|
||||
@;; (at your option) any later version.
|
||||
@;;
|
||||
@;; This program is distributed in the hope that it will be useful,
|
||||
@;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
@;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
@;; GNU Affero General Public License for more details.
|
||||
@;;
|
||||
@;; You should have received a copy of the GNU Affero General Public License
|
||||
@;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
@;; vim: ft=c
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -1,6 +1,22 @@
|
|||
#lang info
|
||||
;; crossfire: distributed brute force infrastructure
|
||||
;;
|
||||
;; Copyright (C) 2020 haskal
|
||||
;;
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU Affero General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU Affero General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Affero General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
(define pkg-desc "a package. whoa")
|
||||
(define pkg-desc "distributed brute force infrastructure")
|
||||
(define version "0.1")
|
||||
(define pkg-authors '(haskal))
|
||||
|
||||
|
|
|
@ -1,4 +1,20 @@
|
|||
#lang racket/base
|
||||
;; crossfire: distributed brute force infrastructure
|
||||
;;
|
||||
;; Copyright (C) 2020 haskal
|
||||
;;
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU Affero General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU Affero General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Affero General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
(require racket/bool racket/function racket/match
|
||||
(for-syntax racket/base racket/syntax)
|
||||
|
|
|
@ -1,4 +1,20 @@
|
|||
#lang racket/base
|
||||
;; crossfire: distributed brute force infrastructure
|
||||
;;
|
||||
;; Copyright (C) 2020 haskal
|
||||
;;
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU Affero General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU Affero General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Affero General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
(require racket/list racket/match)
|
||||
|
||||
|
|
|
@ -1,4 +1,21 @@
|
|||
#lang scribble/manual
|
||||
@;; crossfire: distributed brute force infrastructure
|
||||
@;;
|
||||
@;; Copyright (C) 2020 haskal
|
||||
@;;
|
||||
@;; This program is free software: you can redistribute it and/or modify
|
||||
@;; it under the terms of the GNU Affero General Public License as published by
|
||||
@;; the Free Software Foundation, either version 3 of the License, or
|
||||
@;; (at your option) any later version.
|
||||
@;;
|
||||
@;; This program is distributed in the hope that it will be useful,
|
||||
@;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
@;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
@;; GNU Affero General Public License for more details.
|
||||
@;;
|
||||
@;; You should have received a copy of the GNU Affero General Public License
|
||||
@;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
@require[@for-label[crossfire
|
||||
racket/base]]
|
||||
|
||||
|
|
|
@ -0,0 +1,20 @@
|
|||
#lang scribble/text
|
||||
@(require racket/date "crossfire/info.rkt")
|
||||
@(define year-now (date-year (current-date)))
|
||||
@(define year (if (= year-now 2020) year-now @list{2020 - @year-now}))
|
||||
;; @#%info-lookup['collection]: @#%info-lookup['pkg-desc]
|
||||
;;
|
||||
;; Copyright (C) @year @(add-between (#%info-lookup 'pkg-authors) ", ")
|
||||
;;
|
||||
;; This program is free software: you can redistribute it and/or modify
|
||||
;; it under the terms of the GNU Affero General Public License as published by
|
||||
;; the Free Software Foundation, either version 3 of the License, or
|
||||
;; (at your option) any later version.
|
||||
;;
|
||||
;; This program is distributed in the hope that it will be useful,
|
||||
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
;; GNU Affero General Public License for more details.
|
||||
;;
|
||||
;; You should have received a copy of the GNU Affero General Public License
|
||||
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
|
Loading…
Reference in New Issue