
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
trafaret_schema
Advanced tools
Library takes JSON Schema and converts it to a Trafaret instance:
from trafaret_schema import json_schema
check_string = json_schema({'type': 'string', 'minLength': 6, 'maxLength': 10, 'pattern': '(bla)+'})
check_string('blablabla')
What is important to note, that this library is a big trafaret that produces other trafarets. So on parsing JSON Schema you can get a DataError, and you will get DataError in usage of parsed schema. And you can use schema parser or parsed schema as trafaret in any circumstances where you can use trafarets.
You can use Register object to provide custom format implementation and to support cross schemas $ref
objects:
import trafaret as t
from trafaret_schema import json_schema, Register
my_reg = Register()
my_reg.reg_format('any_ip', t.IPv4 | t.IPv6)
check_address = json_schema(open('address.json').read(), context=register)
check_person = json_schema(open('person.json').read(), context=register)
Library is a bit of fun, because it is implemented in a trafaret and produces trafaret instances. Also its like
a pro level of trafaret usage (I hope so).
Features:
[*] basic
[*] type
[*] enum
[*] const
[*] number
[*] string
[*] array
[*] minProperties
[*] maxProperties
[*] uniqueItems
[*] items
[*] additionalItems
[*] contains
[*] objects
[*] maxProperties
[*] minProperties
[*] required
[*] properties
[*] patternProperties
[*] additionalProperties
[*] dependencies
[*] propertyNames
[*] combinators
[*] anyOf
[*] allOf
[*] oneOf
[*] not
[*] format
[*] references
[*] definitions
[*] $ref
FAQs
Validation and parsing library
We found that trafaret_schema demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.