Skip to content

Commit d4a4975

Browse files
committed
pwnshop: require explicit relative template refs
1 parent be80b01 commit d4a4975

2,629 files changed

Lines changed: 2621 additions & 2676 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

challenges/common/victim-selenium.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/exec-suid -- /usr/bin/python3 -I
22

3-
{% from 'common/random_names.j2' import generate_names %}
3+
{% from './random_names.j2' import generate_names %}
44
{% set challenge = namespace() %}
55
{{ generate_names(challenge, random) }}
66

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "computing-101/common/Dockerfile.j2" %}
1+
{% include "../../../common/Dockerfile.j2" %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "computing-101/common/Dockerfile.j2" %}
1+
{% include "../../../common/Dockerfile.j2" %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "computing-101/common/Dockerfile.j2" %}
1+
{% include "../../../common/Dockerfile.j2" %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "computing-101/common/Dockerfile.j2" %}
1+
{% include "../../../common/Dockerfile.j2" %}

challenges/computing-101/assembly-crash-course/common/challenge.Dockerfile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{%- extends "computing-101/common/Dockerfile.j2" -%}
1+
{%- extends "../../common/Dockerfile.j2" -%}
22
{%- block additional_packages %}{{ super() }} python3-unicorn{% endblock -%}
33
{%- block after_setup -%}
44
{{ super() }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "common/challenge.Dockerfile.j2" %}
1+
{% include "../../common/challenge.Dockerfile.j2" %}

challenges/computing-101/assembly-crash-course/level-1/challenge/run.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "common/run.py" %}
1+
{% extends "../../common/run.py" %}
22
{% set level = 1 %}
33

44
{% block level_class %}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{% include "common/challenge.Dockerfile.j2" %}
1+
{% include "../../common/challenge.Dockerfile.j2" %}

challenges/computing-101/assembly-crash-course/level-10-a/challenge/run.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "common/run.py" %}
1+
{% extends "../../common/run.py" %}
22
{% set level = 12 %}
33

44
{% block level_class %}

0 commit comments

Comments
 (0)