[BACK]Return to innovations.html CVS log [TXT][DIR] Up to [local] / www

Annotation of www/innovations.html, Revision 1.76

1.1       schwarze    1: <!DOCTYPE html>
1.34      schwarze    2: <html lang="en">
1.1       schwarze    3: <head>
                      4: <meta charset="UTF-8"/>
1.33      tj          5: <title>OpenBSD: Innovations</title>
1.31      deraadt     6: <meta name="viewport" content="width=device-width, initial-scale=1">
                      7: <link rel="stylesheet" type="text/css" href="openbsd.css">
1.35      tb          8: <link rel="canonical" href="https://www.openbsd.org/innovations.html">
1.1       schwarze    9: </head>
                     10:
1.75      schwarze   11: <body>
1.31      deraadt    12:
1.75      schwarze   13: <h2 id="OpenBSD">
                     14:     <a href="index.html"><i>Open</i><b>BSD</b></a> Innovations
1.32      tj         15: </h2>
1.31      deraadt    16: <hr>
1.32      tj         17: <p>
1.59      job        18:     This is a list of software and ideas developed or maintained by the OpenBSD
                     19:     project, sorted in order of approximate introduction. Some of them are
                     20:     explained in detail in our <a href="events.html">research papers</a>.
                     21: </p>
1.32      tj         22: <hr>
1.1       schwarze   23:
1.59      job        24: <h3>Concepts</h3>
1.1       schwarze   25:
                     26: <ul>
1.59      job        27:     <li>
                     28:         <a href="https://man.openbsd.org/ipsec.4">ipsec(4)</a>:
                     29:         Started by John Ioannidis, Angelos D. Keromytis, Niels Provos, and
                     30:         Niklas Hallqvist, imported February 20, 1997.  OpenBSD was the first
                     31:         free operating system to provide an IPSec stack.
                     32:     </li>
                     33:     <li>
                     34:         <a href="https://man.openbsd.org/inet6.4">inet6(4)</a>:
                     35:         First complete integration and adoption of IPv6 led by
                     36:         "Itojun" (Dr. Junichiro Hagino) [WIDE/KAME], Craig Metz [NRL], and
                     37:         Angelos D. Keromytis starting Jan 6, 1999.
                     38:         Almost fully operational Jun 6, 1999 during the
                     39:         <a href="hackathons.html">first OpenBSD hackathon</a>.
                     40:         OpenBSD 2.7.
                     41:     </li>
                     42:     <li>
                     43:         <strong>Privilege separation</strong>:
                     44:         First implemented by
                     45:         <a href="http://www.citi.umich.edu/u/provos/ssh/privsep.html">Niels Provos</a>
                     46:         and Markus Friedl in OpenSSH in March 2002, released with OpenBSD 3.2.
                     47:         The concept is now used in many OpenBSD programs, for example
                     48:         <a href="https://man.openbsd.org/bgpd.8">bgpd(8)</a>,
                     49:         <a href="https://man.openbsd.org/dhclient.8">dhclient(8)</a>,
                     50:         <a href="https://man.openbsd.org/dhcpd.8">dhcpd(8)</a>,
                     51:         <a href="https://man.openbsd.org/dvmrpd.8">dvmrpd(8)</a>,
                     52:         <a href="https://man.openbsd.org/eigrpd.8">eigrpd(8)</a>,
                     53:         <a href="https://man.openbsd.org/file.1">file(1)</a>,
                     54:         <a href="https://man.openbsd.org/httpd.8">httpd(8)</a>,
                     55:         <a href="https://man.openbsd.org/iked.8">iked(8)</a>,
                     56:         <a href="https://man.openbsd.org/ldapd.8">ldapd(8)</a>,
                     57:         <a href="https://man.openbsd.org/ldpd.8">ldpd(8)</a>,
                     58:         <a href="https://man.openbsd.org/mountd.8">mountd(8)</a>,
                     59:         <a href="https://man.openbsd.org/npppd.8">npppd(8)</a>,
                     60:         <a href="https://man.openbsd.org/ntpd.8">ntpd(8)</a>,
                     61:         <a href="https://man.openbsd.org/ospfd.8">ospfd(8)</a>,
                     62:         <a href="https://man.openbsd.org/ospf6d.8">ospf6d(8)</a>,
                     63:         <a href="https://man.openbsd.org/pflogd.8">pflogd(8)</a>,
                     64:         <a href="https://man.openbsd.org/radiusd.8">radiusd(8)</a>,
1.67      schwarze   65:         <a href="https://man.openbsd.org/relayd.8">relayd(8)</a>,
1.59      job        66:         <a href="https://man.openbsd.org/ripd.8">ripd(8)</a>,
                     67:         <a href="https://man.openbsd.org/script.1">script(1)</a>,
                     68:         <a href="https://man.openbsd.org/smtpd.8">smtpd(8)</a>,
                     69:         <a href="https://man.openbsd.org/syslogd.8">syslogd(8)</a>,
                     70:         <a href="https://man.openbsd.org/tcpdump.8">tcpdump(8)</a>,
                     71:         <a href="https://man.openbsd.org/tmux.1">tmux(1)</a>,
                     72:         <a href="https://man.openbsd.org/xconsole.1">xconsole(1)</a>,
                     73:         <a href="https://man.openbsd.org/xdm.1">xdm(1)</a>,
                     74:         <a href="https://man.openbsd.org/Xserver.1">Xserver(1)</a>,
                     75:         <a href="https://man.openbsd.org/ypldap.8">ypldap(8)</a>,
                     76:         <a href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a>,
                     77:         etc.
                     78:     </li>
                     79:     <li>
                     80:         <strong>Privilege revocation</strong>:
                     81:         Related to the work on privilege separation, some programs were refactored
                     82:         to drop privileges while holding onto a tricky resource such as a raw socket,
                     83:         reserved port, or modification-locked bpf(4) descriptor,
                     84:         for example
                     85:         <a href="https://man.openbsd.org/ping.8">ping(8)</a>,
                     86:         <a href="https://man.openbsd.org/traceroute.8">traceroute(8)</a>,
                     87:         etc.
                     88:     </li>
                     89:     <li>
                     90:         <strong>Stack protector</strong>:
                     91:         Developed since 2001 as "propolice" by Hiroaki Etoh. Integrated, and
                     92:         implemented for additional hardware platforms, by Miod Vallat and Theo
                     93:         de Raadt.  OpenBSD 3.3 was the first operating system to enable it
                     94:         systemwide by default.
                     95:     </li>
                     96:     <li>
                     97:         <strong>W^X</strong>:
                     98:         First used for sparc, sparc64, alpha, and hppa in OpenBSD 3.3.
                     99:         Strictly enforced by default since OpenBSD 6.0: a program can only
                    100:         violate it if the executable is marked with <code>PT_OPENBSD_WXNEEDED</code>
                    101:         and it is located on a filesystem mounted with the <code>wxallowed</code>
                    102:         <a href="https://man.openbsd.org/mount.8">mount(8)</a> option.
                    103:     </li>
                    104:     <li>
                    105:         <strong>GOT and PLT protection</strong> by ld.so:
                    106:         first done as part of the W^X work in OpenBSD 3.3, by Dale Rahn and
                    107:         Theo de Raadt. The GOT and PLT regions are read-only outside of ld.so
                    108:         itself. Extended to the .init/.fini sections (constructors and
                    109:         destructors) in OpenBSD 3.4.
                    110:     </li>
                    111:     <li>
                    112:         <strong>ASLR</strong>:
                    113:         OpenBSD 3.4 was the first widely used operating system to
                    114:         provide it by default.
                    115:     </li>
                    116:     <li>
                    117:         <a href="https://man.openbsd.org/gcc-local.1">gcc-local(1)</a>
                    118:         __attribute__((__bounded__)) static analysis annotation
                    119:         and checking mechanism:
                    120:         Started by Anil Madhavapeddy on June 26, 2003
                    121:         and ported to GCC 4 by Nicholas Marriott.
                    122:         First released with OpenBSD 3.4.
                    123:     </li>
                    124:     <li>
                    125:         <a href="https://man.openbsd.org/malloc.3">malloc(3)</a>
                    126:         randomization implemented by Thierry Deval. Guard pages and randomized (delayed) free added by Ted Unangst.
                    127:         Reimplemented by <a href="papers/eurobsdcon2009/otto-malloc.pdf">Otto Moerbeek</a>
                    128:         for OpenBSD 4.4.
                    129:     </li>
                    130:     <li>
1.65      kurt      131:         <strong>Position-independent executables (PIE)</strong>:
1.59      job       132:         OpenBSD 5.3 was the first widely used operating system to enable it
                    133:         globally by default, on seven hardware platforms.
1.65      kurt      134:         Implemented in November 2008 by
                    135:         <a href="https://www.openbsd.org/papers/nycbsdcon08-pie/">Kurt Miller</a>
                    136:         and enabled by default by
                    137:         <a href="https://www.openbsd.org/papers/asiabsdcon2015-pie-slides.pdf">Pascal Stumpf</a>
                    138:         in August 2012.
1.59      job       139:     </li>
                    140:     <li>
                    141:         <strong>Random-data memory</strong>:
1.68      deraadt   142:         the ability to specify that a variable should be initialized
                    143:        at load time with random byte values (placed into a new ELF
                    144:        <b>.openbsd.randomdata</b> section) was implemented in
                    145:        OpenBSD 5.3 by Matthew Dempsky.
1.59      job       146:     </li>
                    147:     <li>
                    148:         <strong>Stack protector per shared object</strong>:
                    149:         using the random-data memory feature, each shared object was given its
                    150:         own stack protector cookie in OpenBSD 5.3 by Matthew Dempsky.
                    151:     </li>
                    152:     <li>
                    153:         <strong>Static-PIE</strong>:
                    154:         Position-independent static binaries for /bin, /sbin and ramdisks.
1.65      kurt      155:         Implemented for OpenBSD 5.7 by Kurt Miller and Mark Kettenis.
1.59      job       156:     </li>
                    157:     <li>
                    158:         <strong>SROP</strong>
                    159:         (<a href="https://man.openbsd.org/sigreturn.2">sigreturn(2)</a>
1.71      deraadt   160:         oriented programming) mitigation: attacks researched by
1.59      job       161:         <a href="http://www.cs.vu.nl/~herbertb/papers/srop_sp14.pdf">Eric Bosman</a>
1.71      deraadt   162:         and Herbert Bos in 2014, solution implemented by Theo de Raadt in May 2016,
1.59      job       163:         enabled by default since OpenBSD 6.0.
                    164:     </li>
                    165:     <li>
                    166:         <strong>Library order randomization</strong>:
                    167:         In <a href="https://man.openbsd.org/rc.8">rc(8)</a>, re-link
                    168:         <code>libc.so</code>, <code>libcrypto</code>, and <code>ld.so</code>
                    169:         on startup, placing the objects in a random order.
                    170:         Theo de Raadt and Robert Peichaer, May 2016,
                    171:         enabled by default since OpenBSD 6.0 and 6.2.
                    172:     </li>
                    173:     <li>
                    174:         Kernel-assisted lazy-binding for W^X safety in multi-threaded programs.
                    175:         A new syscall <a href="https://man.openbsd.org/kbind.2">kbind(2)</a>
                    176:         permits lazy-binding to be W^X safe in multi-threaded programs.
                    177:         Implemented for OpenBSD 5.9 by Philip Guenther in July 2015.
                    178:     </li>
                    179:     <li>
                    180:         Process layouts in memory tightened to remove execute permission from
                    181:         all segmented, non-instruction data and to remove write permission from
                    182:         data that is only modified during loading and relocation.
                    183:         By combining the RELRO (Read-Only after Relocation) design from the
                    184:         GNU project with the original ASLR work from OpenBSD 3.3 and
                    185:         strict lazy-binding work from OpenBSD 5.9, this is applied to not
                    186:         just a subset of programs and libraries but rather to all programs
                    187:         and libraries.
                    188:         Implemented for OpenBSD 6.1 by Philip Guenther in August 2016.
                    189:     </li>
                    190:     <li>
                    191:         Use of <strong>fork+exec in privilege separated programs</strong>. The
                    192:         strategy is to give each process a fresh &amp; unique address space for
                    193:         ASLR, stack protector -- as protection against address space discovery attacks.
                    194:         Implemented first by
                    195:         Damien Miller (<a href="https://man.openbsd.org/sshd.8">sshd(8)</a> 2004),
                    196:         Claudio Jeker (<a href="https://man.openbsd.org/bgpd.8">bgpd(8)</a>, 2015),
                    197:         Eric Faurot (<a href="https://man.openbsd.org/smtpd.8">smtpd(8)</a>, 2016),
                    198:         Rafael Zalamena (various, 2016), and others.
                    199:     </li>
                    200:     <li>
                    201:         <strong>trapsleds</strong>:
                    202:         Reduction of incidental NOP instructions/sequences in the instruction
                    203:         stream which could be useful potentially for ROP attack methods to
                    204:         innaccurately target gadgets. These NOP sequences are converted into
                    205:         trap sequences where possible. Todd Mortimer and Theo de Raadt, June
                    206:         2017.
                    207:     </li>
                    208:     <li>
                    209:         <strong>Kernel relinking at boot</strong>:
                    210:         the .o files of the kernel are relinked in random order from a
                    211:         link-kit, before every reboot. This provides substantial interior
                    212:         randomization in the kernel's text and data segments for layout and
                    213:         relative branches/calls.  Basically a unique address space for each
                    214:         kernel boot, similar to the userland fork+exec model described above
                    215:         but for the kernel.  Theo de Raadt, June 2017.
                    216:     </li>
1.61      deraadt   217:     <li>
                    218:        Rearranged i386/amd64 register allocator order in
                    219:        <a href="https://man.openbsd.org/clang.1">clang(1)</a>
                    220:        to reduce polymorphic RET instructions:
                    221:        Todd Mortimer, November 20, 2017.
                    222:     </li>
1.64      deraadt   223:     <li>
1.72      mortimer  224:        Reencoding of i386/amd64 instruction sequences to avoid
                    225:        embedded polymorphic RET instructions.  Enhancements to
                    226:        <a href="https://man.openbsd.org/clang.1">clang(1)</a>
                    227:        Todd Mortimer, April 28, 2018 and onwards.
                    228:     </li>
                    229:     <li>
1.66      schwarze  230:        <b>MAP_STACK</b> addition to
1.64      deraadt   231:        <a href="https://man.openbsd.org/mmap.2">mmap(2)</a>
                    232:        allows opportunistic verification that the stack-register
                    233:        points at stack memory, therefore catching pivots to non-stack
                    234:        memory (sometimes used in ROP attacks).
                    235:        Theo de Raadt, April 12, 2018.
                    236:     </li>
1.68      deraadt   237:     <li>
                    238:         <b>RETGUARD</b> is a replacement for the <b>stack-protector</b>
1.70      deraadt   239:         which uses a per-function random cookie (located in the read-only ELF
                    240:         <b>.openbsd.randomdata</b> section) to consistency-check the
1.68      deraadt   241:         return address on the stack.  Implemented for AMD64 and ARM64
                    242:         by Todd Mortimer in OpenBSD 6.4.
                    243:     </li>
1.76    ! otto      244:     <li>
        !           245:        <b>MAP_CONCEAL</b> addition to
        !           246:        <a href="https://man.openbsd.org/mmap.2">mmap(2)</a>
        !           247:        disallows memory pages to be written to core dumps, preventing
        !           248:        accidental exposure of private information.
        !           249:        Theo de Raadt, Mark Kettenis and Scott Soule Cheloha,
        !           250:        February 2, 2019.
        !           251:     </li>
1.68      deraadt   252:
1.17      mlarkin   253: </ul>
1.1       schwarze  254:
1.59      job       255: <h3>Functions</h3>
1.1       schwarze  256:
                    257: <ul>
1.59      job       258:     <li>
1.62      tj        259:         <a href="https://man.openbsd.org/issetugid.2">issetugid(2)</a>:
                    260:         Theo de Raadt, August 25, 1996, OpenBSD 2.0
                    261:     </li>
1.63      schwarze  262:     <li>
1.59      job       263:         <a href="https://man.openbsd.org/arc4random.3">arc4random(3)</a>:
                    264:         David Mazieres, December 28, 1996, OpenBSD 2.1
                    265:     </li>
                    266:     <li>
                    267:         <a href="https://man.openbsd.org/bcrypt.3">bcrypt(3)</a>:
                    268:         Implemented by <a href="https://www.usenix.org/legacy/events/usenix99/provos/provos_html/node1.html">Niels Provos and David Mazieres</a>
                    269:         Imported February 13, 1997 and first released with OpenBSD 2.1.
                    270:     </li>
                    271:     <li>
                    272:         <a href="https://man.openbsd.org/strlcpy.3">strlcpy(3)</a>,
                    273:         <a href="https://man.openbsd.org/strlcat.3">strlcat(3)</a>:
                    274:         Todd Miller and Theo de Raadt, July 1, 1998, OpenBSD 2.4
                    275:     </li>
                    276:     <li>
                    277:         <a href="https://man.openbsd.org/strtonum.3">strtonum(3)</a>:
                    278:         Ted Unangst, Todd Miller, and Theo de Raadt, May 3, 2004, OpenBSD 3.6
                    279:     </li>
                    280:     <li>
                    281:         <a href="https://man.openbsd.org/imsg_init.3">imsg</a>:
                    282:         Message passing API, written by Henning Brauer.
                    283:         In libutil since May 26, 2010, OpenBSD 4.8;
                    284:         used by various daemons before that.
                    285:     </li>
                    286:     <li>
                    287:         <a href="https://man.openbsd.org/timingsafe_bcmp.3">timingsafe_bcmp(3)</a>:
                    288:         Damien Miller, July 13, 2010, OpenBSD 4.9
                    289:     </li>
                    290:     <li>
                    291:         <a href="https://man.openbsd.org/explicit_bzero.3">explicit_bzero(3)</a>:
                    292:         Ted Unangst and Matthew Dempsky, January 22, 2014, OpenBSD 5.5
                    293:     </li>
                    294:     <li>
                    295:         <a href="https://man.openbsd.org/ohash_init.3">ohash</a>:
                    296:         Written and maintained by Marc Espie.
                    297:         In libutil since May 12, 2014, OpenBSD 5.6;
                    298:         used by make(1) and m4(1) before that.
                    299:     </li>
                    300:     <li>
                    301:         <a href="https://man.openbsd.org/asr_run.3">asr</a>:
                    302:         Replacement resolver written and maintained by Eric Faurot.
                    303:         Imported April 14, 2012; activated on March 26, 2014, OpenBSD 5.6.
                    304:     </li>
                    305:     <li>
                    306:         <a href="https://man.openbsd.org/reallocarray.3">reallocarray(3)</a>:
                    307:         Theo de Raadt and Ted Unangst, April 22, 2014, OpenBSD 5.6
                    308:     </li>
                    309:     <li>
                    310:         <a href="https://man.openbsd.org/getentropy.2">getentropy(2)</a>:
                    311:         Matthew Dempsky and Theo de Raadt, June 13, 2014, OpenBSD 5.6
                    312:     </li>
                    313:     <li>
                    314:         <a href="https://man.openbsd.org/sendsyslog.2">sendsyslog(2)</a>:
                    315:         Theo de Raadt, July 10, 2014, OpenBSD 5.6
                    316:     </li>
                    317:     <li>
                    318:         <a href="https://man.openbsd.org/timingsafe_memcmp.3">timingsafe_memcmp(3)</a>:
                    319:         Matthew Dempsky, July 13, 2014, OpenBSD 5.6
                    320:     </li>
                    321:     <li>
                    322:         <a href="https://man.openbsd.org/pledge.2">pledge(2)</a>:
                    323:         Theo de Raadt, July 19, 2015, OpenBSD 5.9
                    324:     </li>
                    325:     <li>
                    326:         <a href="https://man.openbsd.org/getpwnam_shadow.3">getpwnam_shadow(3)</a>,
                    327:         <a href="https://man.openbsd.org/getpwuid_shadow.3">getpwuid_shadow(3)</a>:
                    328:         Ted Unangst and Theo de Raadt, November 18, 2015, OpenBSD 5.9
                    329:     </li>
                    330:     <li>
                    331:         <a href="https://man.openbsd.org/recallocarray.3">recallocarray(3)</a>:
                    332:         Otto Moerbeek, Joel Sing and Theo de Raadt, March 6, 2017, OpenBSD 6.1
                    333:     </li>
                    334:     <li>
                    335:         <a href="https://man.openbsd.org/freezero.3">freezero(3)</a>:
                    336:         Otto Moerbeek, April 10, 2017, OpenBSD 6.2
1.68      deraadt   337:     </li>
                    338:     <li>
                    339:         <a href="https://man.openbsd.org/unveil.2">unveil(2)</a>:
                    340:         Theo de Raadt and Bob Beck, July 13, 2018, OpenBSD 6.4
1.76    ! otto      341:     </li>
        !           342:     <li>
        !           343:         <a href="https://man.openbsd.org/malloc_conceal.3">malloc_conceal(3)</a>
        !           344:        and
        !           345:         <a href="https://man.openbsd.org/calloc_conceal.3">calloc_conceal(3)</a>:
        !           346:         Otto Moerbeek, May 10, 2019, OpenBSD 6.5
1.60      deraadt   347:     </li>
1.16      deraadt   348: </ul>
                    349:
1.59      job       350:
                    351: <h3>Programs and subsystems</h3>
1.16      deraadt   352:
                    353: <ul>
1.59      job       354:     <li>
                    355:         <a href="https://man.openbsd.org/ypbind.8">ypbind(8)</a>,
                    356:         <a href="https://man.openbsd.org/ypset.8">ypset(8)</a>,
                    357:         <a href="https://man.openbsd.org/ypcat.1">ypcat(1)</a>,
                    358:         <a href="https://man.openbsd.org/ypmatch.1">ypmatch(1)</a>,
                    359:         <a href="https://man.openbsd.org/ypwhich.1">ypwhich(1)</a>,
                    360:         and libc support: Started by Theo de Raadt.
                    361:         Imported April 26, 1993 and first released with NetBSD 0.9.
                    362:     </li>
                    363:     <li>
                    364:         <a href="https://man.openbsd.org/ypserv.8">ypserv(8)</a>:
                    365:         Started by Mats O. Jansson in 1994.
                    366:         Imported October 23, 1995 and first released with OpenBSD 2.0.
                    367:     </li>
                    368:     <li>
                    369:         <a href="https://man.openbsd.org/mopd.8">mopd(8)</a>:
                    370:         Started by Mats O. Jansson in 1993.
                    371:         Imported September 21, 1996 and first released with OpenBSD 2.0.
                    372:     </li>
                    373:     <li>
                    374:         <a href="anoncvs.html">AnonCVS</a>:
                    375:         Designed and implemented by Chuck Cranor and Theo de Raadt in 1995
                    376:         (<a href="papers/anoncvs-paper.pdf">paper</a>,
                    377:         <a href="papers/anoncvs-slides.pdf">slides</a>)
                    378:     </li>
                    379:     <li>
                    380:         <a href="https://man.openbsd.org/aucat.1">aucat(1)</a>:
                    381:         Started by Kenneth Stailey.
                    382:         Imported January 2, 1997 and first released with OpenBSD 2.1.
                    383:         Now maintained by Alexandre Ratchov.
                    384:     </li>
                    385:     <li>
                    386:         <a href="https://www.openssh.com/">OpenSSH</a>
                    387:         including <a href="https://man.openbsd.org/ssh.1">ssh(1)</a>,
                    388:         <a href="https://man.openbsd.org/scp.1">scp(1)</a>,
                    389:         <a href="https://man.openbsd.org/sftp.1">sftp(1)</a>,
                    390:         <a href="https://man.openbsd.org/ssh-add.1">ssh-add(1)</a>,
                    391:         <a href="https://man.openbsd.org/ssh-agent.1">ssh-agent(1)</a>,
                    392:         <a href="https://man.openbsd.org/ssh-keygen.1">ssh-keygen(1)</a>,
                    393:         <a href="https://man.openbsd.org/sshd.8">sshd(8)</a>,
                    394:         <a href="https://man.openbsd.org/sftp-server.8">sftp-server(8)</a>:
                    395:         Started by Aaron Campbell, Bob Beck, Dug Song, Markus Friedl,
                    396:         Niels Provos, and Theo de Raadt
                    397:         as a fork of SSH 1.2.12 by Tatu Ylonen.
                    398:         Imported September 26, 1999 and first released with OpenBSD 2.6.
                    399:         Now maintained by Markus Friedl, Damien Miller, Darren Tucker, and
                    400:         Theo de Raadt.
                    401:     </li>
                    402:     <li>
                    403:         <a href="https://man.openbsd.org/mg.1">mg(1)</a>:
                    404:         Started by Dave Conroy in November 1986.
                    405:         Imported February 25, 2000 and first released with OpenBSD 2.7.
                    406:         Now maintained by Mark Lumsden.
                    407:     </li>
                    408:     <li>
                    409:         <a href="https://man.openbsd.org/m4.1">m4(1)</a>:
                    410:         Originally implemented by Ozan Yigit and Richard A. O'Keefe for 4.3BSD-Reno.
                    411:         Considerably extended and maintained by Marc Espie since 1999.
                    412:     </li>
                    413:     <li>
                    414:         <a href="https://man.openbsd.org/pf.4">pf(4)</a>,
                    415:         <a href="https://man.openbsd.org/pfctl.8">pfctl(8)</a>,
                    416:         <a href="https://man.openbsd.org/pflogd.8">pflogd(8)</a>,
                    417:         <a href="https://man.openbsd.org/authpf.8">authpf(8)</a>,
                    418:         <a href="https://man.openbsd.org/ftp-proxy.8">ftp-proxy(8)</a>:
                    419:         Started by Daniel Hartmeier as a replacement for the non-free ipf by
                    420:         Darren Reed. Imported June 24, 2001 and first released with OpenBSD
                    421:         3.0. Now maintained by Henning Brauer.
                    422:     </li>
                    423:     <li>
                    424:         <a href="https://man.openbsd.org/OpenBSD-5.9/systrace.4">systrace(4)</a>,
                    425:         <a href="https://man.openbsd.org/OpenBSD-5.9/systrace.1">systrace(1)</a>:
                    426:         Started by Niels Provos.
                    427:         Imported June 4, 2002 and first released with OpenBSD 3.2.
                    428:         Deleted after OpenBSD 5.9 because
                    429:         <a href="https://man.openbsd.org/pledge.2">pledge(2)</a> is even better.
                    430:     </li>
                    431:     <li>
                    432:         <a href="https://man.openbsd.org/spamd.8">spamd(8)</a>:
                    433:         Written by Bob Beck. Imported December 21, 2002 and first released with
                    434:         OpenBSD 3.3.
                    435:     </li>
                    436:     <li>
                    437:         <a href="https://man.openbsd.org/dc.1">dc(1)</a>:
                    438:         Written and maintained by Otto Moerbeek.
                    439:         Imported September 19, 2003 and first released with OpenBSD 3.5.
                    440:     </li>
                    441:     <li>
                    442:         <a href="https://man.openbsd.org/bc.1">bc(1)</a>:
                    443:         Written and maintained by Otto Moerbeek.
                    444:         Imported September 25, 2003 and first released with OpenBSD 3.5.
                    445:     </li>
                    446:     <li>
                    447:         <a href="https://man.openbsd.org/sensorsd.8">sensorsd(8)</a>:
                    448:         Started by Henning Brauer.
                    449:         Imported September 24, 2003 and first released with OpenBSD 3.5.
                    450:         Reworked by Constantine A. Murenin.
                    451:     </li>
                    452:     <li>
                    453:         <a href="https://man.openbsd.org/pkg_add.1">pkg_add(1)</a>:
                    454:         Written and maintained by Marc Espie.
                    455:         Imported October 16, 2003 and first released with OpenBSD 3.5.
                    456:     </li>
                    457:     <li>
                    458:         <a href="https://man.openbsd.org/carp.4">carp(4)</a>:
                    459:         Written by Mickey Shalayeff, Markus Friedl, Marco Pfatschbacher,
                    460:         and Ryan McBride.
                    461:         Imported October 17, 2003 and first released with OpenBSD 3.5.
                    462:     </li>
                    463:     <li>
                    464:         <a href="http://www.openbgpd.org/">OpenBGPD</a>
                    465:         including <a href="https://man.openbsd.org/bgpd.8">bgpd(8)</a>
                    466:         and <a href="https://man.openbsd.org/bgpctl.8">bgpctl(8)</a>:
                    467:         Written and maintained by Henning Brauer and Claudio Jeker,
                    468:         and also maintained by Peter Hessler.
                    469:         Imported December 17, 2003 and first released with OpenBSD 3.5.
                    470:     </li>
                    471:     <li>
                    472:         <a href="https://man.openbsd.org/dhclient.8">dhclient(8)</a>:
                    473:         Started by Ted Lemon and Elliot Poger in 1996.
                    474:         Imported January 18, 2004 and first released with OpenBSD 3.5.
                    475:         Reworked by Henning Brauer.
                    476:         Now maintained by Kenneth Westerback.
                    477:     </li>
                    478:     <li>
                    479:         <a href="https://man.openbsd.org/dhcpd.8">dhcpd(8)</a>:
                    480:         Started by Ted Lemon in 1995.
                    481:         Imported April 13, 2004 and first released with OpenBSD 3.6.
                    482:         Reworked by Henning Brauer.
                    483:         Now maintained by Kenneth Westerback.
                    484:     </li>
                    485:     <li>
                    486:         <a href="https://man.openbsd.org/hotplugd.8">hotplugd(8)</a>:
                    487:         Started by Alexander Yurchenko.
                    488:         Imported May 30, 2004 and first released with OpenBSD 3.6.
                    489:     </li>
                    490:     <li>
                    491:         <a href="http://www.openntpd.org/">OpenNTPD</a>
                    492:         including <a href="https://man.openbsd.org/ntpd.8">ntpd(8)</a>
                    493:         and <a href="https://man.openbsd.org/ntpctl.8">ntpctl(8)</a>:
                    494:         Written and maintained by Henning Brauer.
                    495:         Imported May 31, 2004 and first released with OpenBSD 3.6.
                    496:         Portable version maintained by Brent Cook.
                    497:     </li>
                    498:     <li>
                    499:         <a href="https://man.openbsd.org/dpb.1">dpb(1)</a>:
                    500:         Started by Nikolay Sturm on August 10, 2004; first available for OpenBSD 3.6.
                    501:         Rewritten and maintained by Marc Espie since August 20, 2010.
                    502:     </li>
                    503:     <li>
                    504:         <a href="https://man.openbsd.org/ospfd.8">ospfd(8)</a>,
                    505:         <a href="https://man.openbsd.org/ospfctl.8">ospfctl(8)</a>:
                    506:         Started by Esben Norby and Claudio Jeker.
                    507:         Imported January 28, 2005 and first released with OpenBSD 3.7.
                    508:     </li>
                    509:     <li>
                    510:         <a href="https://man.openbsd.org/ifstated.8">ifstated(8)</a>:
                    511:         Started by Marco Pfatschbacher and Ryan McBride.
                    512:         Imported January 23, 2004 and first released with OpenBSD 3.8.
                    513:     </li>
                    514:     <li>
                    515:         <a href="https://man.openbsd.org/bioctl.8">bioctl(8)</a>:
                    516:         Started by Marco Peereboom.
                    517:         Imported March 29, 2005 and first released with OpenBSD 3.8.
                    518:     </li>
                    519:     <li>
                    520:         <a href="https://man.openbsd.org/hostapd.8">hostapd(8)</a>:
                    521:         Written and maintained by Reyk Floeter.
                    522:         Imported May 26, 2005 and first released with OpenBSD 3.8.
                    523:     </li>
                    524:     <li>
                    525:         <a href="https://man.openbsd.org/watchdogd.8">watchdogd(8)</a>:
                    526:         Started by Marc Balmer.
                    527:         Imported August 8, 2005 and first released with OpenBSD 3.8.
                    528:     </li>
                    529:     <li>
                    530:         <a href="https://man.openbsd.org/sdiff.1">sdiff(1)</a>:
                    531:         Written by Ray Lai.
                    532:         Imported December 27, 2005 and first released with OpenBSD 3.9.
                    533:     </li>
                    534:     <li>
                    535:         <a href="https://man.openbsd.org/dvmrpd.8">dvmrpd(8)</a>,
                    536:         <a href="https://man.openbsd.org/dvmrpctl.8">dvmrpctl(8)</a>:
                    537:         Started by Esben Norby.
                    538:         Imported June 1, 2006 and first released with OpenBSD 4.0.
                    539:     </li>
                    540:     <li>
                    541:         <a href="https://man.openbsd.org/ripd.8">ripd(8)</a>,
                    542:         <a href="https://man.openbsd.org/ripctl.8">ripctl(8)</a>:
                    543:         Started by Michele Marchetto.
                    544:         Imported October 18, 2006 and first released with OpenBSD 4.1.
                    545:     </li>
                    546:     <li>
                    547:         <a href="https://man.openbsd.org/pkg-config.1">pkg-config(1)</a>:
                    548:         Started by Chris Kuethe and Marc Espie.
                    549:         Imported November 27, 2006 and first released with OpenBSD 4.1.
                    550:         Now maintained by Jasper Lievisse Adriaanse.
                    551:     </li>
                    552:     <li>
                    553:         <a href="https://man.openbsd.org/relayd.8">relayd(8)</a>
                    554:         with <a href="https://man.openbsd.org/relayctl.8">relayctl(8)</a>:
                    555:         Started by Pierre-Yves Ritschard and Reyk Floeter.
                    556:         Imported December 16, 2006 and first released with OpenBSD 4.1.
                    557:         Now maintained by Reyk Floeter and Sebastian Benoit.<br/>
                    558:     </li>
                    559:     <li>
                    560:         <a href="https://man.openbsd.org/cwm.1">cwm(1)</a>:
                    561:         Started by <a href="http://monkey.org/~marius/cwm/README">Marius
                    562:             Aamodt Eriksen</A> in 2004.
                    563:         Imported April 27, 2007 and first released with OpenBSD 4.2.
                    564:         Now maintained by Okan Demirmen.
                    565:         <a href="https://github.com/chneukirchen/cwm">Portable version</a>
                    566:         maintained by Leah Neukirchen.
                    567:     </li>
                    568:     <li>
                    569:         <a href="https://man.openbsd.org/ospf6d.8">ospf6d(8)</a>,
                    570:         <a href="https://man.openbsd.org/ospf6ctl.8">ospf6ctl(8)</a>:
                    571:         Started by Esben Norby and Claudio Jeker.
                    572:         Imported October 8, 2007 and first released with OpenBSD 4.2.
                    573:     </li>
                    574:     <li>
                    575:         <a href="https://man.openbsd.org/libtool.1">libtool(1)</a>:
                    576:         Written by Steven Mestdagh and Marc Espie.
                    577:         Imported October 28, 2007 and first available for OpenBSD 4.3.
                    578:         Now maintained by Marc Espie, Jasper Lievisse Adriaanse,
                    579:         and Antoine Jacoutot.
                    580:     </li>
                    581:     <li>
                    582:         <a href="https://man.openbsd.org/snmpd.8">snmpd(8)</a>,
                    583:         <a href="https://man.openbsd.org/snmpctl.8">snmpctl(8)</a>:
                    584:         Started by Reyk Floeter.
                    585:         Imported December 5, 2007 and first released with OpenBSD 4.3.
                    586:         Maintained by Reyk Floeter and Bret Lambert.
                    587:     </li>
                    588:     <li>
                    589:         <a href="https://man.openbsd.org/sysmerge.8">sysmerge(8)</a>:
                    590:         Written and maintained by Antoine Jacoutot,
                    591:         originally forked from mergemaster by Douglas Barton.
                    592:         Imported April 22, 2008, first released with OpenBSD 4.4.
                    593:     </li>
                    594:     <li>
                    595:         <a href="https://man.openbsd.org/ypldap.8">ypldap(8)</a>:
                    596:         Started by Pierre-Yves Ritschard.
                    597:         Imported June 26, 2008 and first released with OpenBSD 4.4.
                    598:     </li>
                    599:     <li>
                    600:         <a href="https://www.opensmtpd.org/">OpenSMTPD</a>
                    601:         including <a href="https://man.openbsd.org/smtpd.8">smtpd(8)</a>,
                    602:         <a href="https://man.openbsd.org/smtpctl.8">smtpctl(8)</a>,
                    603:         <a href="https://man.openbsd.org/makemap.8">makemap(8)</a>:
                    604:         Started by Gilles Chehade.
                    605:         Imported November 1, 2008 and first released with OpenBSD 4.6.
                    606:         Now maintained by Gilles Chehade and Eric Faurot.
                    607:     </li>
                    608:     <li>
                    609:         <a href="http://tmux.github.io/">tmux</a>,
                    610:         <a href="https://man.openbsd.org/tmux.1">tmux(1)</a>:
                    611:         Started in 2007 and maintained by Nicholas Marriott.
                    612:         Imported June 1, 2009, first released with OpenBSD 4.6.
                    613:     </li>
                    614:     <li>
                    615:         <a href="https://man.openbsd.org/ldpd.8">ldpd(8)</a>,
                    616:         <a href="https://man.openbsd.org/ldpctl.8">ldpctl(8)</a>:
                    617:         Started by Michele Marchetto.
                    618:         Imported June 1, 2009 and first released with OpenBSD 4.6.
                    619:         Now maintained by Claudio Jeker.
                    620:     </li>
                    621:     <li>
                    622:         <a href="http://mdocml.bsd.lv/">mandoc</a>
                    623:         including <a href="https://man.openbsd.org/mandoc.1">mandoc(1)</a>,
                    624:         <a href="https://man.openbsd.org/man.1">man(1)</a>,
                    625:         <a href="https://man.openbsd.org/apropos.1">apropos(1)</a>,
                    626:         <a href="https://man.openbsd.org/makewhatis.8">makewhatis(8)</a>,
1.67      schwarze  627:         <a href="https://man.openbsd.org/man.cgi.8">man.cgi(8)</a>:
1.59      job       628:         Started by Kristaps Dzonsons in November 2008.
                    629:         Imported April 6, 2009, first released with OpenBSD 4.8.
                    630:         Now maintained by Ingo Schwarze.
                    631:     </li>
                    632:     <li>
                    633:         <a href="https://man.openbsd.org/ldapd.8">ldapd(8)</a>,
                    634:         <a href="https://man.openbsd.org/ldapctl.8">ldapctl(8)</a>:
                    635:         Written by Martin Hedenfalk.
                    636:         Imported May 31, 2010 and first released with OpenBSD 4.8.
                    637:     </li>
                    638:     <li>
                    639:         <a href="http://www.openiked.org/">OpenIKED</a>
                    640:         including <a href="https://man.openbsd.org/iked.8">iked(8)</a>
                    641:         and <a href="https://man.openbsd.org/ikectl.8">ikectl(8)</a>:
                    642:         Started by Reyk Floeter.
                    643:         Imported June 3, 2010 and first released with OpenBSD 4.8.
                    644:         Now maintained by Reyk Floeter and Mike Belopuhov.
                    645:     </li>
                    646:     <li>
                    647:         <a href="https://man.openbsd.org/iscsid.8">iscsid(8)</a>,
                    648:         <a href="https://man.openbsd.org/iscsictl.8">iscsictl(8)</a>:
                    649:         Written and maintained by Claudio Jeker.
                    650:         Imported September 24, 2010 and first released with OpenBSD 4.9.
                    651:     </li>
                    652:     <li>
                    653:         <a href="https://man.openbsd.org/rc.d.8">rc.d(8)</a>,
                    654:         <a href="https://man.openbsd.org/rc.subr.8">rc.subr(8)</a>:
                    655:         Written and maintained by Robert Nagy and Antoine Jacoutot.
                    656:         Imported October 26, 2010 and first released with OpenBSD 4.9.
                    657:     </li>
                    658:     <li>
                    659:         <a href="https://man.openbsd.org/tftpd.8">tftpd(8)</a>:
                    660:         Written and maintained by David Gwynne.
                    661:         Imported March 2, 2012 and first released with OpenBSD 5.2.
                    662:     </li>
                    663:     <li>
                    664:         <a href="https://man.openbsd.org/npppd.8">npppd(8)</a>,
                    665:         <a href="https://man.openbsd.org/npppctl.8">npppctl(8)</a>:
                    666:         Started by Internet Initiative Japan Inc.
                    667:         Imported January 11, 2010, first released with OpenBSD 5.3.
                    668:         Maintained by YASUOKA Masahiko.
                    669:     </li>
                    670:     <li>
                    671:         <a href="https://man.openbsd.org/ldomd.8">ldomd(8)</a>,
                    672:         <a href="https://man.openbsd.org/ldomctl.8">ldomctl(8)</a>:
                    673:         Written and maintained by Mark Kettenis.
                    674:         Imported October 26, 2012 and first released with OpenBSD 5.3.
                    675:     </li>
                    676:     <li>
                    677:         <a href="https://man.openbsd.org/sndiod.8">sndiod(8)</a>:
                    678:         Written and maintained by Alexandre Ratchov.
                    679:         Imported November 23, 2012 and first released with OpenBSD 5.3.
                    680:     </li>
                    681:     <li>
                    682:         <a href="https://man.openbsd.org/cu.1">cu(1)</a>:
                    683:         Written and maintained by Nicholas Marriott.
                    684:         Imported July 10, 2012 and first released with OpenBSD 5.4.
                    685:     </li>
                    686:     <li>
                    687:         <a href="https://man.openbsd.org/identd.8">identd(8)</a>:
                    688:         Written and maintained by David Gwynne.
                    689:         Imported March 18, 2013 and first released with OpenBSD 5.4.
                    690:     </li>
                    691:     <li>
                    692:         <a href="https://man.openbsd.org/slowcgi.8">slowcgi(8)</a>:
                    693:         Written and maintained by Florian Obser.
                    694:         Imported May 23, 2013 and first released with OpenBSD 5.4.
                    695:     </li>
                    696:     <li>
                    697:         <a href="https://man.openbsd.org/signify.1">signify(1)</a>:
                    698:         Written and maintained by <a href="http://www.tedunangst.com/flak/post/signify">Ted Unangst</a>.
                    699:         Imported December 31, 2013 and first released with OpenBSD 5.5.
                    700:     </li>
                    701:     <li>
                    702:         <a href="https://man.openbsd.org/htpasswd.1">htpasswd(1)</a>:
                    703:         Written and maintained by Florian Obser.
                    704:         Imported March 17, 2014 and first released with OpenBSD 5.6.
                    705:     </li>
                    706:     <li>
                    707:         <a href="https://www.libressl.org/">LibreSSL</a>:
                    708:         Started by Ted Unangst, Bob Beck, Joel Sing, Miod Vallat, Philip Guenther,
                    709:         and Theo de Raadt on April 13, 2014, as a fork of OpenSSL 1.0.1g.
                    710:         First released with OpenBSD 5.6.
                    711:         Portable version maintained by Brent Cook.
                    712:     </li>
                    713:     <li>
                    714:         <a href="https://man.openbsd.org/httpd.8">httpd(8)</a>:
                    715:         Started by Reyk Floeter.
                    716:         Imported July 12, 2014 and first released with OpenBSD 5.6.
                    717:         Maintained by Reyk Floeter and Florian Obser.
                    718:     </li>
                    719:     <li>
                    720:         <a href="https://man.openbsd.org/rcctl.8">rcctl(8)</a>:
                    721:         Written and maintained by Antoine Jacoutot.
                    722:         Imported August 19, 2014 and first released with OpenBSD 5.7.
                    723:     </li>
                    724:     <li>
                    725:         <a href="https://man.openbsd.org/file.1">file(1)</a>:
                    726:         Rewritten from scratch and maintained by Nicholas Marriott.
                    727:         Imported April 24, 2015 and first released with OpenBSD 5.8.
                    728:     </li>
                    729:     <li>
                    730:         <a href="https://man.openbsd.org/doas.1">doas(1)</a>:
                    731:         Written and maintained by Ted Unangst.
                    732:         Imported July 16, 2015 and first released with OpenBSD 5.8.
                    733:     </li>
                    734:     <li>
                    735:         <a href="https://man.openbsd.org/radiusd.8">radiusd(8)</a>:
                    736:         Written and maintained by YASUOKA Masahiko.
                    737:         Imported July 21, 2015 and first released with OpenBSD 5.8.
                    738:     </li>
                    739:     <li>
                    740:         <a href="https://man.openbsd.org/eigrpd.8">eigrpd(8)</a>,
                    741:         <a href="https://man.openbsd.org/eigrpctl.8">eigrpctl(8)</a>:
                    742:         Written and maintained by Renato Westphal.
                    743:         Imported October 2, 2015 and first released with OpenBSD 5.9.
                    744:     </li>
                    745:     <li>
                    746:         <a href="https://man.openbsd.org/rebound.8">rebound(8)</a>:
                    747:         Written and maintained by Ted Unangst.
                    748:         Imported October 15, 2015 and first released with OpenBSD 5.9.
                    749:     </li>
                    750:     <li>
                    751:         <a href="https://man.openbsd.org/vmm.4">vmm(4)</a>,
                    752:         <a href="https://man.openbsd.org/vmd.8">vmd(8)</a>,
                    753:         <a href="https://man.openbsd.org/vmctl.8">vmctl(8)</a>:
                    754:         Written and maintained by Mike Larkin and Reyk Floeter.
                    755:         Imported November 13, 2015 and first released with OpenBSD 5.9.
                    756:     </li>
                    757:     <li>
                    758:         <a href="https://man.openbsd.org/pdisk.8">pdisk(8)</a>:
                    759:         Originally written by Eryk Vershen in 1996-1998,
                    760:         rewritten and maintained by Kenneth Westerback since January 11, 2016
                    761:         and first released with OpenBSD 5.9.
                    762:     </li>
                    763:     <li>
                    764:         <a href="https://man.openbsd.org/mknod.8">mknod(8)</a>:
                    765:         Original version from Version 6 AT&amp;T UNIX (1975),
                    766:         last rewritten by Marc Espie on March 5, 2016
                    767:         and first released with OpenBSD 6.0.
                    768:     </li>
                    769:     <li>
                    770:         <a href="https://man.openbsd.org/audioctl.1">audioctl(1)</a>:
                    771:         Originally written by Lennart Augustsson in 1997,
                    772:         rewritten and maintained by Alexandre Ratchov since June 21, 2016
                    773:         and first released with OpenBSD 6.0.
                    774:     </li>
                    775:     <li>
                    776:         <a href="https://man.openbsd.org/switchd.8">switchd(8)</a>,
                    777:         <a href="https://man.openbsd.org/switchctl.8">switchctl(8)</a>:
                    778:         Written and maintained by Reyk Floeter.
                    779:         Imported July 19, 2016; released with OpenBSD 6.1.
                    780:     </li>
                    781:     <li>
                    782:         <a href="https://man.openbsd.org/acme-client.1">acme-client(1)</a>:
                    783:         Written by Kristaps Dzonsons, imported August 31, 2016; released
                    784:         with OpenBSD 6.1.
                    785:     </li>
                    786:     <li>
                    787:         <a href="https://man.openbsd.org/syspatch.8">syspatch(8)</a>:
                    788:         Written and maintained by Antoine Jacoutot.
                    789:         Imported September 5, 2016; released with OpenBSD 6.1.
                    790:     </li>
                    791:     <li>
                    792:         <a href="https://man.openbsd.org/ping.8">ping(8)</a>:
                    793:         Restructured to include IPv6 functionality and maintained by Florian Obser.
                    794:         The separate
                    795:         <a href="https://man.openbsd.org/OpenBSD-6.0/ping6.8">ping6(8)</a>
                    796:         was superseded on September 17, 2016,
                    797:         and the new, combined version was released with OpenBSD 6.1.
                    798:     </li>
                    799:     <li>
                    800:         <a href="https://man.openbsd.org/xenodm.1">xenodm(1)</a>:
                    801:         Cleaned-up fork of
                    802:         <a href="https://man.openbsd.org/OpenBSD-6.0/xdm.1">xdm(1)</a>
                    803:         maintained by Matthieu Herrb.
                    804:         Imported October 23, 2016; released with OpenBSD 6.1.
                    805:     </li>
                    806:     <li>
                    807:         <a href="https://man.openbsd.org/ocspcheck.8">ocspcheck(8)</a>:
                    808:         Written and maintained by Bob Beck.
                    809:         Imported January 24, 2017; released with OpenBSD 6.1.
                    810:     </li>
                    811:     <li>
                    812:         <a href="https://man.openbsd.org/slaacd.8">slaacd(8)</a>:
                    813:         Written and maintained by Florian Obser.
                    814:         Imported March 18, 2017; released with OpenBSD 6.2.
1.66      schwarze  815:     </li>
                    816:     <li>
                    817:         <a href="https://man.openbsd.org/rad.8">rad(8)</a>:
                    818:         Written and maintained by Florian Obser.
1.73      schwarze  819:         Imported July 10, 2018; released with OpenBSD 6.4.
                    820:     </li>
                    821:     <li>
                    822:         <a href="https://man.openbsd.org/unwind.8">unwind(8)</a>:
                    823:         Written and maintained by Florian Obser.
                    824:         Imported January 23, 2019; released with OpenBSD 6.5.
1.59      job       825:     </li>
1.74      schwarze  826:     <li>
                    827:         <a href="https://man.openbsd.org/openrsync.1">openrsync(1)</a>:
                    828:         Written by Kristaps Dzonsons.
                    829:         Imported February 10, 2019; released with OpenBSD 6.5.
                    830:     </li>
1.1       schwarze  831: </ul>
                    832:
1.11      deraadt   833: <h3>Projects maintained by OpenBSD developers outside OpenBSD</h3>
1.1       schwarze  834:
                    835: <ul>
1.59      job       836:     <li>
                    837:         <a href="http://www.sudo.ws/">sudo</a>:
                    838:         Started by Bob Coggeshall and Cliff Spencer around 1980.
                    839:         Imported November 18, 1999, first released with OpenBSD 2.7.
                    840:         Now maintained by Todd Miller.
                    841:     </li>
                    842:     <li>
                    843:         <a href="http://bulabula.org/femail/">femail</a>:
                    844:         Written and maintained by Henning Brauer.
                    845:         Started in 2005, port available since September 22, 2005.
                    846:     </li>
                    847:     <li>
                    848:         <a href="http://www.midish.org/">midish</a>:
                    849:         Written and maintained by Alexandre Ratchov.
                    850:         Started in 2003, port available since November 4, 2005.
                    851:     </li>
                    852:     <li>
                    853:         <a href="https://github.com/nicm/fdm">fdm</a>:
                    854:         Written and maintained by Nicholas Marriott.
                    855:         Started in 2006, port available since January 18, 2007.
                    856:     </li>
                    857:     <li>
                    858:         <a href="https://github.com/ajacoutot/toad/">toad</a>:
                    859:         Written and maintained by Antoine Jacoutot.
                    860:         Started in 2013, port available since October 8, 2013.
1.74      schwarze  861:     </li>
                    862:     <li>
                    863:         <a href="https://mandoc.bsd.lv/docbook2mdoc/">docbook2mdoc</a>:
                    864:         Started by Kristaps Dzonsons in 2014, maintained by Ingo Schwarze.
                    865:         Port available since April 3, 2014.
1.59      job       866:     </li>
                    867:     <li>
                    868:         <a href="http://jasperla.github.io/portroach/">portroach</a>:
                    869:         Written and maintained by Jasper Lievisse Adriaanse,
                    870:         originally forked from FreeBSD's portscout.
                    871:         Started in 2014, port available since September 5, 2014.
                    872:     </li>
                    873:     <li>
                    874:         <a href="https://github.com/yasuoka/cvs2gitdump">cvs2gitdump</a>:
                    875:         Written and maintained by YASUOKA Masahiko.
                    876:         Started in 2012, port available since August 1, 2016.
                    877:     </li>
1.1       schwarze  878: </ul>
                    879:
                    880: </body>
                    881: </html>