Skip to content

Commit

Permalink
[5.5] Security fixes (#33858)
Browse files Browse the repository at this point in the history
* fix casing issue with guarded

* block json mass assignment

* formatting

* add boolean

* protect table names and guarded

* Apply fixes from StyleCI (#33772)

* dont allow mass filling with table names

* Apply fixes from StyleCI (#33773)

* [6.x] Verify column names are actual columns when using guarded (#33777)

* verify column names are actual columns when using guarded

* Apply fixes from StyleCI (#33778)

* remove json check

* Apply fixes from StyleCI (#33857)

Co-authored-by: Taylor Otwell <[email protected]>
Co-authored-by: Taylor Otwell <[email protected]>
  • Loading branch information
3 people authored Aug 13, 2020
1 parent c0e71ca commit a10c113
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Collection.php
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ public function dd(...$args)

call_user_func_array([$this, 'dump'], $args);

die(1);
exit(1);
}

/**
Expand Down
2 changes: 1 addition & 1 deletion helpers.php
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ function dd(...$args)
(new Dumper)->dump($x);
}

die(1);
exit(1);
}
}

Expand Down

0 comments on commit a10c113

Please sign in to comment.