File tree Expand file tree Collapse file tree 5 files changed +26
-11
lines changed
Expand file tree Collapse file tree 5 files changed +26
-11
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,24 @@ All notable changes to this project will be documented in this file.
44The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66
7- ## [Unreleased]
7+ ## [0.11.7] - 2022-09-18
88### Added
9- - Test cases for plugins creation and running
9+ - DuckDuckGo plugin
10+
11+ ### Changed
12+ - `--debugging` CLI parameter is now `--debug`
13+
14+ ### Fixed
15+ - False negatives due to whitespaces in subdomain extracted text (e.g. "\n some.subdomain.com \n")
16+ - Subdomain selectors for Yahoo, Ask, Baidu and StartPage
17+ - WebCrawler query parameters
18+ - Baidu requests delay to avoid anti-bot checks
19+
20+ ### Removed
21+ - WebCrawler plugin because of `403: Forbidden` HTTP error
22+ - StartPage and Exaled plugin because of CAPTCHA
23+ - Teoma plugin since it now redirects to Ask
24+
1025
1126## [0.9.2] - 2019-08-01
1227### Added
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM python:3.7.4-alpine3.10
22
33RUN apk --no-cache add libxml2 libxml2-dev libxslt-dev gcc musl-dev wget ca-certificates
44
5- ARG YASS_VERSION="0.9.2 "
5+ ARG YASS_VERSION="0.11.7 "
66
77WORKDIR /yass
88RUN wget "https://github.com/mrnfrancesco/yass/archive/v${YASS_VERSION}.zip" -O yass.zip && \
Original file line number Diff line number Diff line change @@ -10,8 +10,8 @@ YASS - Yet Another Subdomainer Software
1010 :alt: Code Climate
1111.. image:: https://img.shields.io/badge/python-3.7-blue.svg
1212 :target: https://www.python.org/downloads/release/python-374/
13- .. image:: https://img.shields.io/badge/release-v0.9.2 -green.svg
14- :target: https://github.com/mrnfrancesco/yass/releases/tag/v0.9.2
13+ .. image:: https://img.shields.io/badge/release-v0.11.7 -green.svg
14+ :target: https://github.com/mrnfrancesco/yass/releases/tag/v0.11.7
1515
1616YASS is a plugin-powered search engine based subdomainer.
1717Its goal is to give you a tool to query whatever search engine you like and parse HTML response writing *less than 10 lines of code*.
@@ -48,7 +48,7 @@ Example output
4848
4949 ________________________________________________
5050
51- YASS - Yet Another Subdomainer Software (v0.9.2 )
51+ YASS - Yet Another Subdomainer Software (v0.11.7 )
5252 by Francesco Marano (@mrnfrancesco)
5353 ________________________________________________
5454
@@ -146,4 +146,4 @@ Or you can use Docker:
146146 $ docker run --rm -ti mrnfrancesco/yass:latest /bin/sh
147147
148148 /yass # yass --version
149- YASS v0.9.2
149+ YASS v0.11.7
Original file line number Diff line number Diff line change 33[ ![ Build Status] ( https://travis-ci.org/mrnfrancesco/yass.svg?branch=master )] ( https://travis-ci.org/mrnfrancesco/yass )
44[ ![ Code Climate] ( https://codeclimate.com/github/mrnfrancesco/yass/badges/gpa.svg )] ( https://codeclimate.com/github/mrnfrancesco/yass )
55[ ![ Python 3.7] ( https://img.shields.io/badge/python-3.7-blue.svg )] ( https://www.python.org/downloads/release/python-374/ )
6- [ ![ Release] ( https://img.shields.io/badge/release-v0.9.2 -green.svg )] ( https://github.com/mrnfrancesco/yass/releases/tag/v0.9.2 )
6+ [ ![ Release] ( https://img.shields.io/badge/release-v0.11.7 -green.svg )] ( https://github.com/mrnfrancesco/yass/releases/tag/v0.11.7 )
77
88YASS is a plugin-powered search engine based subdomainer.
99Its goal is to give you a tool to query whatever search engine you like and parse HTML response writing * less than 10 lines of code* .
@@ -40,7 +40,7 @@ $ yass microsoft.com
4040
4141 ________________________________________________
4242
43- YASS - Yet Another Subdomainer Software (v0.9.2 )
43+ YASS - Yet Another Subdomainer Software (v0.11.7 )
4444 by Francesco Marano (@mrnfrancesco)
4545 ________________________________________________
4646
@@ -141,5 +141,5 @@ $ docker build -t mrnfrancesco/yass:latest .
141141$ docker run --rm -ti mrnfrancesco/yass:latest /bin/sh
142142
143143/yass # yass --version
144- YASS v0.9.2
144+ YASS v0.11.7
145145```
Original file line number Diff line number Diff line change 11__lname__ = "yass"
22__uname__ = "YASS"
33__acronym__ = "Yet Another Subdomainer Software"
4- __version__ = "0.8.0 "
4+ __version__ = "0.11.7 "
55__author__ = "Francesco Marano (@mrnfrancesco)"
66__author_email__ = "francesco.mrn24@gmail.com"
77__source_url__ = "https://github.com/mrnfrancesco/yass"
You can’t perform that action at this time.
0 commit comments