aboutsummaryrefslogtreecommitdiff
path: root/security/sasp
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* Remove ${PORTSDIR}/ from dependencies, categories r, s, t, and u.Mathieu Arnold2016-04-011-1/+1
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412349
* Install net/libnet headers and libraries back in the location where otherTijl Coosemans2016-03-202-14/+7
| | | | | | | | | | | | ports expect it. The files were put in a different location to avoid a conflict with net/libnet10 but this port has been removed a while ago now. PR: 208122 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=411432
* MASTER_SITES cleanup.Mathieu Arnold2015-05-141-2/+1
| | | | | | | | | | | | | | | | | | | | | | - Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=386312
* - Convert net/libnet to USES=libtool and bump dependent portsTijl Coosemans2014-07-141-2/+2
| | | | | | | | | - Add INSTALL_TARGET=install-strip Approved by: portmgr (implicit, bump unstaged port) Notes: svn path=/head/; revision=361791
* - support stageYen-Ming Lee2014-07-112-4/+3
| | | | Notes: svn path=/head/; revision=361508
* Resetting maintainership on ports that have not been staged and without anyBaptiste Daroussin2014-07-041-1/+1
| | | | | | | | | pending PR (related to stage) With hat: portmgr Notes: svn path=/head/; revision=360609
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-5/+2
| | | | | | | security) Notes: svn path=/head/; revision=327769
* - update libnet to 1.1.6Dirk Meyer2013-02-181-2/+2
| | | | | | | | | - build shared lib - fix dependend ports when libnet.so.8 was linked in - fix dependend ports when includes where missing Notes: svn path=/head/; revision=312526
* -remove MD5Olli Hauer2011-07-031-1/+0
| | | | Notes: svn path=/head/; revision=276991
* - Patch net/libnet* to versioned libraries and header files, so they canPav Lucistnik2007-01-312-1/+15
| | | | | | | | | | | | coexist PR: ports/103861 Submitted by: alepulver Tested by: pointyhat With hat: portmgr Notes: svn path=/head/; revision=183770
* SHA256ifyEdwin Groothuis2006-01-241-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154303
* libnet update:Sergey Matveychuk2005-11-141-1/+2
| | | | | | | | | | | | | | | | | - move 1.0 obsoleted version to net/libnet10 net/libnet is latest Stable Version net/libnet is latest Beta Version - Fix all depended ports with a new DEPENDS scheme - While I'm here fix security/yersinia build on 4.x (getopt_long and ncurses issues) PR: ports/85519 (based on) Submitted by: Stas Yakovlev <stas.yakovlev_at_gmail.com> Notes: svn path=/head/; revision=148262
* - Reroll tarball and mirror on MASTER_SITE_LOCAL, the orignal tarballMichael Johnson2005-06-152-3/+5
| | | | | | | | | was tared up and gzipped twice and gnutar does not like that. Pointed out by: krismail Notes: svn path=/head/; revision=137504
* - Add saspMichael Johnson2005-06-153-0/+46
This is a tool that uses ARP poisoning to have a scenario like this: we have a LAN and we want offer connectivity to every- one coming here with his laptop for example. It could happen that our customer has his network parameters already configured to work correctly in his own LAN, but not working here. We can have then this scenario: Customer's host (10.0.0.2/8 and default gateway set to 10.0.0.1) Our LAN (192.168.0.0/24 with real gateway 192.168.0.254). All that we want is that our customer plugs his laptop and joins the internet without changing nothing of his network parameters. Here comes this tool installed in my real gw(192.168.0.254) It's a sort of sniffer, because it sniffs broadcast ARP requests for the gateway and answers that the gateway is itself In our example our customer's laptop sends this request: arp who-has 10.0.0.1 tell 10.0.0.2 Now our gateway does the following: 1) Sends back this reply to 10.0.0.2: arp reply 10.0.0.1 is-at his_mac_address 2)Create the alias 10.0.0.254 (ARP is not routable so we need one alias for each subnet that is not our one) 3)Sends itself an ARP reply to refresh his ARP cache It is different from proxy arp for two reasons: first it runs in user space, then in this case we can plug machines belonging to whatever subnet, while proxy arp is used in the case of only two different ones. PR: ports/79676 Submitted by: Luigi Pizzirani <sviat@opengeeks.it> Notes: svn path=/head/; revision=137480